Ignore:
Timestamp:
10 Jul 2023, 01:17:02 (15 months ago)
Author:
Henrik Bettermann
Message:

Change JAMB fields.

Location:
main/kofacustom.unidel/trunk/src/kofacustom/unidel
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.unidel/trunk/src/kofacustom/unidel/applicants/browser.py

    r17475 r17476  
    5858# UG students are all undergraduate students.
    5959UG_OMIT_DISPLAY_FIELDS = OMIT_DISPLAY_FIELDS + (
    60     'jamb_subjects',
     60    'jamb_subjects_list',
    6161    'programme_type',)
    6262UG_OMIT_PDF_FIELDS = UG_OMIT_DISPLAY_FIELDS + ('phone',)
    6363UG_OMIT_MANAGE_FIELDS = (
    6464    'special_application',
    65     'jamb_subjects',
     65    'jamb_subjects_list',
    6666    'programme_type',)
    6767UG_OMIT_EDIT_FIELDS = UG_OMIT_MANAGE_FIELDS + OMIT_DISPLAY_FIELDS + (
  • main/kofacustom.unidel/trunk/src/kofacustom/unidel/applicants/interfaces.py

    r17161 r17476  
    211211        required = False,
    212212        )
    213     jamb_subjects_list = schema.List(
    214         title = _(u'JAMB Subjects'),
    215         required = False,
    216         defaultFactory=list,
    217         value_type = schema.Choice(
    218             vocabulary = jambsubjects
    219             #source = JAMBSubjectSource(),
    220             ),
    221         )
     213    #jamb_subjects_list = schema.List(
     214    #    title = _(u'JAMB Subjects'),
     215    #    required = False,
     216    #    defaultFactory=list,
     217    #    value_type = schema.Choice(
     218    #        vocabulary = jambsubjects
     219    #        #source = JAMBSubjectSource(),
     220    #        ),
     221    #    )
    222222    jamb_score = schema.Int(
    223223        title = _(u'Total JAMB Score'),
     
    228228    #    required = False,
    229229    #    )
    230     jamb_reg_number = schema.TextLine(
    231         title = _(u'JAMB Registration Number'),
    232         required = False,
    233         constraint=validate_jamb_reg_number,
    234         )
     230    #jamb_reg_number = schema.TextLine(
     231    #    title = _(u'JAMB Registration Number'),
     232    #    required = False,
     233    #    constraint=validate_jamb_reg_number,
     234    #    )
    235235    notice = schema.Text(
    236236        title = _(u'Notice'),
  • main/kofacustom.unidel/trunk/src/kofacustom/unidel/locales/en/LC_MESSAGES/waeup.kofa.po

    r16717 r17476  
    1313msgstr "Institutions"
    1414
     15msgid "Registration Number"
     16msgstr "(JAMB) Registration Number"
Note: See TracChangeset for help on using the changeset viewer.