Changeset 17476
- Timestamp:
- 10 Jul 2023, 01:17:02 (16 months ago)
- Location:
- main/kofacustom.unidel/trunk/src/kofacustom/unidel
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.unidel/trunk/src/kofacustom/unidel/applicants/browser.py
r17475 r17476 58 58 # UG students are all undergraduate students. 59 59 UG_OMIT_DISPLAY_FIELDS = OMIT_DISPLAY_FIELDS + ( 60 'jamb_subjects ',60 'jamb_subjects_list', 61 61 'programme_type',) 62 62 UG_OMIT_PDF_FIELDS = UG_OMIT_DISPLAY_FIELDS + ('phone',) 63 63 UG_OMIT_MANAGE_FIELDS = ( 64 64 'special_application', 65 'jamb_subjects ',65 'jamb_subjects_list', 66 66 'programme_type',) 67 67 UG_OMIT_EDIT_FIELDS = UG_OMIT_MANAGE_FIELDS + OMIT_DISPLAY_FIELDS + ( -
main/kofacustom.unidel/trunk/src/kofacustom/unidel/applicants/interfaces.py
r17161 r17476 211 211 required = False, 212 212 ) 213 jamb_subjects_list = schema.List(214 title = _(u'JAMB Subjects'),215 required = False,216 defaultFactory=list,217 value_type = schema.Choice(218 vocabulary = jambsubjects219 #source = JAMBSubjectSource(),220 ),221 )213 #jamb_subjects_list = schema.List( 214 # title = _(u'JAMB Subjects'), 215 # required = False, 216 # defaultFactory=list, 217 # value_type = schema.Choice( 218 # vocabulary = jambsubjects 219 # #source = JAMBSubjectSource(), 220 # ), 221 # ) 222 222 jamb_score = schema.Int( 223 223 title = _(u'Total JAMB Score'), … … 228 228 # required = False, 229 229 # ) 230 jamb_reg_number = schema.TextLine(231 title = _(u'JAMB Registration Number'),232 required = False,233 constraint=validate_jamb_reg_number,234 )230 #jamb_reg_number = schema.TextLine( 231 # title = _(u'JAMB Registration Number'), 232 # required = False, 233 # constraint=validate_jamb_reg_number, 234 # ) 235 235 notice = schema.Text( 236 236 title = _(u'Notice'), -
main/kofacustom.unidel/trunk/src/kofacustom/unidel/locales/en/LC_MESSAGES/waeup.kofa.po
r16717 r17476 13 13 msgstr "Institutions" 14 14 15 msgid "Registration Number" 16 msgstr "(JAMB) Registration Number"
Note: See TracChangeset for help on using the changeset viewer.