Changeset 13884


Ignore:
Timestamp:
6 Jun 2016, 14:14:31 (9 years ago)
Author:
Henrik Bettermann
Message:

course1 must not be required when importing data.

File:
1 edited

Legend:

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

    r13883 r13884  
    192192        title = _(u'1st Choice Course of Study'),
    193193        source = AppCatCertificateSource(),
    194         required = True,
     194        required = False,
    195195        )
    196196    course2 = schema.Choice(
     
    396396    jamb_reg_number = schema.TextLine(
    397397        title = _(u'JAMB Registration Number'),
     398        required = True,
     399        )
     400    course1 = schema.Choice(
     401        title = _(u'1st Choice Course of Study'),
     402        source = AppCatCertificateSource(),
    398403        required = True,
    399404        )
     
    405410ICustomUGApplicantEdit[
    406411    'jamb_reg_number'].order =  ICustomUGApplicant['jamb_reg_number'].order
     412ICustomUGApplicantEdit[
     413    'course1'].order =  ICustomUGApplicant['course1'].order
    407414
    408415class ICustomPGApplicantEdit(ICustomPGApplicant):
Note: See TracChangeset for help on using the changeset viewer.