Ignore:
Timestamp:
24 Apr 2025, 01:07:30 (3 months ago)
Author:
Henrik Bettermann
Message:

Add JAMB registration number and NIN.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.fceokene/trunk/src/waeup/fceokene/students/interfaces.py

    r14591 r18067  
    9090        readonly = False,
    9191        )
     92    jamb_reg_number = schema.TextLine(
     93        title = _(u'JAMB Registration Number'),
     94        required = False,
     95        readonly = False,
     96        )
     97
     98    nin = schema.Int(
     99        title = _(u'National Identity Number (NIN)'),
     100        required = False,
     101        readonly = False,
     102        min=10000000000,
     103        max=99999999999,
     104        )
    92105
    93106    fst_sit_fname = schema.TextLine(
Note: See TracChangeset for help on using the changeset viewer.