Ignore:
Timestamp:
8 Jul 2021, 09:14:04 (3 years ago)
Author:
Henrik Bettermann
Message:

Add jamb name field.

Location:
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/applicants
Files:
3 edited

Legend:

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

    r16501 r16533  
    429429
    430430class AdvancedLevelResult(AdditionalFile):
    431     grok.name('alr_scan.pdf')
     431    grok.name('alr_scan')
    432432
    433433class NYSCCertificate(AdditionalFile):
  • main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/applicants/interfaces.py

    r16502 r16533  
    305305        readonly = False,
    306306        )
     307    jamb_fname = schema.TextLine(
     308        title = _(u'Full Name'),
     309        required = False,
     310        readonly = False,
     311        )
    307312    #jamb_subjects = schema.Text(
    308313    #    title = _(u'Subjects and Scores'),
     
    641646    fst_sit_fname = schema.TextLine(
    642647        title = _(u'Full Name'),
    643         description = _(u'As it is written in the WAEC result(s) respectively.'),
     648        description = _(u'As it is written on your WAEC/NECO result.'),
    644649        required = False,
    645650        readonly = False,
     
    648653    scd_sit_fname = schema.TextLine(
    649654        title = _(u'Full Name'),
    650         description = _(u'As it is written in the WAEC result(s) respectively.'),
     655        description = _(u'As it is written on your WAEC/NECO result.'),
     656        required = False,
     657        readonly = False,
     658        )
     659
     660    jamb_fname = schema.TextLine(
     661        title = _(u'Full Name'),
     662        description = _(u'As it is written on your JAMB result slip.'),
    651663        required = False,
    652664        readonly = False,
     
    663675ICustomUGApplicantEdit[
    664676    'scd_sit_fname'].order =  ICustomUGApplicant['scd_sit_fname'].order
     677ICustomUGApplicantEdit[
     678    'jamb_fname'].order =  ICustomUGApplicant['jamb_fname'].order
    665679
    666680class ICustomPGApplicantEdit(ICustomPGApplicant):
  • main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/applicants/utils.py

    r16501 r16533  
    3838                 ('Second Sitting Result (WAEC/NECO)','scd_sit_scan.pdf'),
    3939                 ('Higher Qualification Result','hq_scan.pdf'),
    40                  ('Advanced Level Result','alr_scan.pdf'),
     40                 ('Advanced Level Result','alr_scan'),
    4141                 ('JAMB Result','jamb.pdf'),
    4242                 ('Statement of Result','res_stat.pdf'),
     
    7272        'form.nysc_year': _(u'NYSC Information/Exemption Certificate'),
    7373        'form.employer': _(u'Employment History'),
    74         'form.jamb_subjects': _(u'JAMB Data (All Applicants)'),
    75         'form.jamb_subjects_list': _(u'JAMB Data (All Applicants)'),
     74        'form.jamb_fname': _(u'JAMB Data (All Applicants)'),
    7675        'form.notice': _(u'Application Process Information'),
    7776        'form.pp_school': _(u'Post Primary School Qualification'),
Note: See TracChangeset for help on using the changeset viewer.