- Timestamp:
- 30 Jun 2023, 07:55:48 (17 months ago)
- Location:
- main/kofacustom.edocons/trunk/src/kofacustom/edocons/applicants
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.edocons/trunk/src/kofacustom/edocons/applicants/browser.py
r17340 r17460 93 93 'jamb_subjects', 94 94 'jamb_score', 95 'jamb_reg_number',95 #'jamb_reg_number', 96 96 'aggregate') 97 97 -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/applicants/interfaces.py
r17387 r17460 194 194 required = True, 195 195 ) 196 course2 = schema.Choice(197 title = _(u'2nd Choice Course of Study'),198 source = AppCatCertificateSource(),199 required = False,200 )196 #course2 = schema.Choice( 197 # title = _(u'2nd Choice Course of Study'), 198 # source = AppCatCertificateSource(), 199 # required = False, 200 # ) 201 201 202 202 fst_sit_fname = schema.TextLine( … … 305 305 required = False, 306 306 readonly = False, 307 ) 308 jamb_reg_number = schema.TextLine( 309 title = _(u'JAMB Registration Number'), 310 required = False, 311 constraint=validate_jamb_reg_number, 307 312 ) 308 313 jamb_subjects = schema.Text( … … 327 332 # required = False, 328 333 # ) 329 jamb_reg_number = schema.TextLine(330 title = _(u'JAMB Registration Number'),331 required = False,332 constraint=validate_jamb_reg_number,333 )334 334 cbt_score = schema.Int( 335 335 title = _(u'CBT Score'), -
main/kofacustom.edocons/trunk/src/kofacustom/edocons/applicants/utils.py
r17106 r17460 48 48 'form.nysc_year': _(u'NYSC Information'), 49 49 'form.employer': _(u'Employment History'), 50 'form.jamb_subjects': _(u'JAMB Data'), 51 'form.jamb_subjects_list': _(u'JAMB Data'), 50 #'form.jamb_subjects': _(u'JAMB Data'), 51 #'form.jamb_subjects_list': _(u'JAMB Data'), 52 'form.jamb_reg_number': _(u'JAMB Data'), 52 53 'form.notice': _(u'Application Process Information'), 53 54 'form.pp_school': _(u'Post Primary School Qualification'),
Note: See TracChangeset for help on using the changeset viewer.