- Timestamp:
- 8 Apr 2020, 10:48:10 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/applicants/interfaces.py
r15884 r16049 30 30 from waeup.kofa.applicants.interfaces import ( 31 31 contextual_reg_num_source, IApplicantBaseData) 32 from waeup.kofa.refereeentries import RefereeEntryField 32 33 from kofacustom.nigeria.applicants.interfaces import ( 33 34 LGASource, high_qual, high_grade, exam_types, DisabilitiesSource, … … 325 326 ) 326 327 328 nysc_number = schema.Int( 329 title = _(u'Nysc Number'), 330 required = False, 331 readonly = False, 332 ) 333 334 referees = schema.List( 335 title = _(u'Referees'), 336 value_type = RefereeEntryField(), 337 required = False, 338 defaultFactory=list, 339 ) 340 341 ICustomPGApplicant[ 342 'referees'].order = INigeriaPGApplicant['emp2_reason'].order 327 343 ICustomPGApplicant[ 328 344 'sponsor'].order = ICustomPGApplicant['lga'].order … … 333 349 ICustomPGApplicant[ 334 350 'lga'].order = ICustomPGApplicant['nationality'].order 351 ICustomPGApplicant[ 352 'nysc_number'].order = ICustomPGApplicant['nysc_year'].order 335 353 336 354 class ICustomApplicant(ICustomUGApplicant, ICustomPGApplicant):
Note: See TracChangeset for help on using the changeset viewer.