Ignore:
Timestamp:
26 Jan 2024, 08:46:59 (8 months ago)
Author:
Henrik Bettermann
Message:

Make some fields compulsory.

Location:
main/kofacustom.edocons/trunk/src/kofacustom/edocons
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/applicants/interfaces.py

    r17488 r17681  
    688688    jamb_reg_number = schema.TextLine(
    689689        title = _(u'JAMB Registration Number'),
    690         required = False,
     690        required = True,
    691691        constraint=validate_jamb_reg_number,
    692692        )
     
    694694    jamb_subjects = schema.Text(
    695695        title = _(u'Subjects and Scores'),
    696         required = False,
     696        required = True,
    697697        )
    698698
    699699    jamb_score = schema.Int(
    700700        title = _(u'Total JAMB Score'),
    701         required = False,
     701        required = True,
    702702        )
    703703
  • main/kofacustom.edocons/trunk/src/kofacustom/edocons/utils/utils.py

    r17513 r17681  
    7575        #('credit-1', 'Credit-1'),
    7676        #('credit-2', 'Credit-2'),
    77         ('dist', 'Distinction'),
     77        #('dist', 'Distinction'),
    7878        #('pass', 'Pass'),
    7979        #('AR', 'Awaiting Results'),
Note: See TracChangeset for help on using the changeset viewer.