Changeset 11653 for main/waeup.aaue/trunk/src/waeup/aaue/interfaces.py
- Timestamp:
- 15 May 2014, 07:08:46 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/interfaces.py
r11624 r11653 45 45 46 46 school_fee_1 = schema.Float( 47 title = _(u' Initial School Fee (not FP)'),47 title = _(u'Regular Initial School Fee'), 48 48 default = 0.0, 49 49 required = True, … … 51 51 52 52 school_fee_2 = schema.Float( 53 title = _(u'Returning School Fee (not FP)'), 53 title = _(u'Returning School Fee'), 54 default = 0.0, 55 required = True, 56 ) 57 58 school_fee_3 = schema.Float( 59 title = _(u'FP Initial School Fee'), 54 60 default = 0.0, 55 61 required = True, … … 63 69 64 70 clearance_fee = schema.Float( 65 title = _(u'Acceptance Fee'), 71 title = _(u'Regular Acceptance Fee'), 72 default = 0.0, 73 required = True, 74 ) 75 76 clearance_fee_fp = schema.Float( 77 title = _(u'FP Acceptance Fee'), 66 78 default = 0.0, 67 79 required = True,
Note: See TracChangeset for help on using the changeset viewer.