Changeset 13033 for main/waeup.kofa/trunk/src
- Timestamp:
- 5 Jun 2015, 04:45:28 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/interfaces.py
r13031 r13033 726 726 ) 727 727 728 application_fee = schema.Float(729 title = _(u'Application Fee'),730 default = 0.0,731 required = False,732 )733 734 clearance_fee = schema.Float(735 title = _(u'Acceptance Fee'),736 default = 0.0,737 required = False,738 )739 740 booking_fee = schema.Float(741 title = _(u'Bed Booking Fee'),742 default = 0.0,743 required = False,744 )745 746 maint_fee = schema.Float(747 title = _(u'Rent (fallback)'),748 default = 0.0,749 required = False,750 )751 752 transcript_fee = schema.Float(753 title = _(u'Transcript Fee'),754 default = 0.0,755 required = False,756 )757 758 late_registration_fee = schema.Float(759 title = _(u'Late Course Registration Fee'),760 default = 0.0,761 required = False,762 )763 764 728 clearance_enabled = schema.Bool( 765 729 title = _(u'Clearance enabled'), … … 776 740 ) 777 741 742 application_fee = schema.Float( 743 title = _(u'Application Fee'), 744 default = 0.0, 745 required = False, 746 ) 747 748 clearance_fee = schema.Float( 749 title = _(u'Acceptance Fee'), 750 default = 0.0, 751 required = False, 752 ) 753 754 booking_fee = schema.Float( 755 title = _(u'Bed Booking Fee'), 756 default = 0.0, 757 required = False, 758 ) 759 760 maint_fee = schema.Float( 761 title = _(u'Rent (fallback)'), 762 default = 0.0, 763 required = False, 764 ) 765 766 transcript_fee = schema.Float( 767 title = _(u'Transcript Fee'), 768 default = 0.0, 769 required = False, 770 ) 771 772 late_registration_fee = schema.Float( 773 title = _(u'Late Course Registration Fee'), 774 default = 0.0, 775 required = False, 776 ) 777 778 778 coursereg_deadline = schema.Datetime( 779 title = _(u'C urrent Course Registration Deadline'),779 title = _(u'Course Registration Deadline'), 780 780 required = False, 781 781 description = _('Example: ') + u'2011-12-31 23:59:59+01:00',
Note: See TracChangeset for help on using the changeset viewer.