Changeset 2106 for trunk/loreality/loreality/model/form.py
- Timestamp:
- 07/06/10 12:38:59 (23 months ago)
- File:
-
- 1 edited
-
trunk/loreality/loreality/model/form.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/loreality/loreality/model/form.py
r2105 r2106 42 42 date = DateConverter() 43 43 44 situation = String() 45 objectives = String() 46 flightplan = String() 47 threat = String() 48 others = String() 44 49 50 class SquadronForm(Schema): 51 allow_extra_fields = True 52 filter_extra_fields = True 45 53 54 pre_validators = [variabledecode.NestedVariables()] 55 name = String(not_empty=True) 56 pilots = ForEach( Pilot()) 57 plane = String() 58
Note: See TracChangeset
for help on using the changeset viewer.
