Changeset 10592 for main/kofacustom.nigeria/trunk/src/kofacustom
- Timestamp:
- 6 Sep 2013, 05:00:57 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/applicants/interfaces.py
r10591 r10592 100 100 adding them to the UG_OMIT* tuples. 101 101 """ 102 sex = schema.Choice( 103 title = _(u'Sex'), 104 source = GenderSource(), 105 required = False, 106 ) 102 107 103 nationality = schema.Choice( 108 104 source = nats_vocab, … … 122 118 title = _(u'1st Choice Course of Study'), 123 119 source = AppCatCertificateSource(), 124 required = False,120 required = True, 125 121 ) 126 122 course2 = schema.Choice( … … 211 207 ) 212 208 213 INigeriaUGApplicant[214 'sex'].order = IApplicantBaseData['sex'].order215 209 INigeriaUGApplicant[ 216 210 'locked'].order = IApplicantBaseData['suspended'].order … … 430 424 constraint=validate_email, 431 425 ) 432 sex = schema.Choice(433 title = _(u'Sex'),434 source = GenderSource(),435 required = True,436 )437 426 date_of_birth = FormattedDate( 438 427 title = _(u'Date of Birth'), 439 428 required = True, 440 429 show_year = True, 441 )442 course1 = schema.Choice(443 title = _(u'1st Choice Course of Study'),444 source = AppCatCertificateSource(),445 required = True,446 430 ) 447 431 … … 449 433 'date_of_birth'].order = INigeriaUGApplicant['date_of_birth'].order 450 434 INigeriaUGApplicantEdit[ 451 'sex'].order = INigeriaUGApplicant['sex'].order452 INigeriaUGApplicantEdit[453 435 'email'].order = INigeriaUGApplicant['email'].order 454 INigeriaUGApplicantEdit[455 'course1'].order = INigeriaUGApplicant['course1'].order456 436 457 437 class INigeriaPGApplicantEdit(INigeriaPGApplicant):
Note: See TracChangeset for help on using the changeset viewer.