Changeset 13033


Ignore:
Timestamp:
5 Jun 2015, 04:45:28 (9 years ago)
Author:
Henrik Bettermann
Message:

Reorder fields in interface.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/interfaces.py

    r13031 r13033  
    726726        )
    727727
    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 
    764728    clearance_enabled = schema.Bool(
    765729        title = _(u'Clearance enabled'),
     
    776740        )
    777741
     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
    778778    coursereg_deadline = schema.Datetime(
    779         title = _(u'Current Course Registration Deadline'),
     779        title = _(u'Course Registration Deadline'),
    780780        required = False,
    781781        description = _('Example: ') + u'2011-12-31 23:59:59+01:00',
Note: See TracChangeset for help on using the changeset viewer.