Ignore:
Timestamp:
19 Jun 2019, 07:24:30 (5 years ago)
Author:
Henrik Bettermann
Message:

Make course2 and course3 selection compulsory.

File:
1 edited

Legend:

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

    r15459 r15462  
    837837        )
    838838
     839    course1 = schema.Choice(
     840        title = _(u'1st Choice Course of Study'),
     841        source = AppCatCertificateSource(),
     842        required = True,
     843        )
     844
     845    course2 = schema.Choice(
     846        title = _(u'2nd Choice Course of Study'),
     847        source = AppCatCertificateSource(),
     848        required = True,
     849        )
     850
     851    course3 = schema.Choice(
     852        title = _(u'3rd Choice Course of Study'),
     853        source = AppCatCertificateSource(),
     854        required = True,
     855        )
     856
    839857    fst_sit_fname = schema.TextLine(
    840858        title = _(u'Full Name'),
     
    888906ICustomUGApplicantEdit['date_of_birth'].order = ICustomUGApplicant[
    889907    'date_of_birth'].order
     908ICustomUGApplicantEdit['course1'].order = ICustomUGApplicant[
     909    'course1'].order
     910ICustomUGApplicantEdit['course2'].order = ICustomUGApplicant[
     911    'course2'].order
     912ICustomUGApplicantEdit['course3'].order = ICustomUGApplicant[
     913    'course3'].order
    890914ICustomUGApplicantEdit['fst_sit_fname'].order = ICustomUGApplicant[
    891915    'fst_sit_fname'].order
Note: See TracChangeset for help on using the changeset viewer.