Changeset 17068 for main/kofacustom.iuokada/trunk/src
- Timestamp:
- 17 Aug 2022, 16:11:54 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/applicants/interfaces.py
r17066 r17068 804 804 title = _(u'Full Name'), 805 805 description = _(u'As it is written on your JAMB result slip.'), 806 required = True,806 required = False, 807 807 readonly = False, 808 808 ) 809 809 jamb_subjects_list = schema.List( 810 810 title = _(u'JAMB Subjects'), 811 required = True,811 required = False, 812 812 defaultFactory=list, 813 813 value_type = schema.Choice( … … 818 818 jamb_score = schema.Int( 819 819 title = _(u'Total JAMB Score'), 820 required = True,820 required = False, 821 821 ) 822 822 823 823 jamb_reg_number = schema.TextLine( 824 824 title = _(u'JAMB Registration Number'), 825 required = True,825 required = False, 826 826 # constraint=validate_jamb_reg_number_2, # temporarily in 2021 827 827 constraint=validate_jamb_reg_number_3,
Note: See TracChangeset for help on using the changeset viewer.