Ignore:
Timestamp:
17 Sep 2019, 18:27:50 (5 years ago)
Author:
Henrik Bettermann
Message:

Enable application slip for special applications.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.dspg/trunk/src/kofacustom/dspg/applicants/interfaces.py

    r15576 r15588  
    289289class ICustomSpecialApplicant(ISpecialApplicant):
    290290
     291    department = schema.TextLine(
     292        title = _(u'Department'),
     293        required = True,
     294        readonly = False,
     295        )
     296
     297    grad_year = schema.Choice(
     298        title = _(u'Year of Graduation'),
     299        required = True,
     300        values = grad_year_range(),
     301        readonly = False,
     302        )
     303
    291304    carryover_courses = schema.Text(
    292305        title = _(u'Carry-Over Courses'),
    293306        required = False,
    294         description = _(
    295             u'Enter course titles if carry-over remedial payment.'),
    296         )
    297 
    298     department = schema.TextLine(
    299         title = _(u'Department'),
    300         required = True,
    301         readonly = False,
    302         )
    303 
    304     grad_year = schema.Choice(
    305         title = _(u'Year of Graduation'),
    306         required = True,
    307         values = grad_year_range(),
    308         readonly = False,
    309         )
    310 
     307        #description = _(
     308        #    u'Enter course titles if carry-over remedial payment.'),
     309        )
    311310class ICustomApplicant(ICustomUGApplicant, ICustomPGApplicant,
    312311                       ICustomSpecialApplicant):
Note: See TracChangeset for help on using the changeset viewer.