Changeset 10500


Ignore:
Timestamp:
14 Aug 2013, 12:28:57 (11 years ago)
Author:
Henrik Bettermann
Message:

Insert field for JAMB registration number like in AAUE.

File:
1 edited

Legend:

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

    r9500 r10500  
    183183        required = False,
    184184        )
     185    jamb_reg_number = schema.TextLine(
     186        title = _(u'JAMB Registration Number'),
     187        required = False,
     188        )
    185189    notice = schema.Text(
    186190        title = _(u'Notice'),
     
    275279        )
    276280
     281ICustomUGApplicantEdit[
     282    'date_of_birth'].order =  ICustomUGApplicant['date_of_birth'].order
     283ICustomUGApplicantEdit[
     284    'email'].order =  ICustomUGApplicant['email'].order
     285ICustomUGApplicantEdit[
     286    'jamb_reg_number'].order =  ICustomUGApplicant['reg_number'].order
     287
    277288class ICustomPGApplicantEdit(ICustomPGApplicant):
    278289    """A postgraduate applicant interface for editing.
     
    298309        )
    299310
     311ICustomPGApplicantEdit[
     312    'date_of_birth'].order =  ICustomPGApplicant['date_of_birth'].order
     313ICustomPGApplicantEdit[
     314    'email'].order =  ICustomPGApplicant['email'].order
     315
     316
    300317class ICustomApplicantOnlinePayment(INigeriaApplicantOnlinePayment):
    301318    """An applicant payment via payment gateways.
Note: See TracChangeset for help on using the changeset viewer.