- Timestamp:
- 26 Jan 2024, 08:46:59 (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.edocons/trunk/src/kofacustom/edocons/applicants/interfaces.py
r17488 r17681 688 688 jamb_reg_number = schema.TextLine( 689 689 title = _(u'JAMB Registration Number'), 690 required = False,690 required = True, 691 691 constraint=validate_jamb_reg_number, 692 692 ) … … 694 694 jamb_subjects = schema.Text( 695 695 title = _(u'Subjects and Scores'), 696 required = False,696 required = True, 697 697 ) 698 698 699 699 jamb_score = schema.Int( 700 700 title = _(u'Total JAMB Score'), 701 required = False,701 required = True, 702 702 ) 703 703
Note: See TracChangeset for help on using the changeset viewer.