Changeset 16533 for main/kofacustom.iuokada/trunk/src/kofacustom
- Timestamp:
- 8 Jul 2021, 09:14:04 (3 years ago)
- 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 429 429 430 430 class AdvancedLevelResult(AdditionalFile): 431 grok.name('alr_scan .pdf')431 grok.name('alr_scan') 432 432 433 433 class NYSCCertificate(AdditionalFile): -
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/applicants/interfaces.py
r16502 r16533 305 305 readonly = False, 306 306 ) 307 jamb_fname = schema.TextLine( 308 title = _(u'Full Name'), 309 required = False, 310 readonly = False, 311 ) 307 312 #jamb_subjects = schema.Text( 308 313 # title = _(u'Subjects and Scores'), … … 641 646 fst_sit_fname = schema.TextLine( 642 647 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.'), 644 649 required = False, 645 650 readonly = False, … … 648 653 scd_sit_fname = schema.TextLine( 649 654 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.'), 651 663 required = False, 652 664 readonly = False, … … 663 675 ICustomUGApplicantEdit[ 664 676 'scd_sit_fname'].order = ICustomUGApplicant['scd_sit_fname'].order 677 ICustomUGApplicantEdit[ 678 'jamb_fname'].order = ICustomUGApplicant['jamb_fname'].order 665 679 666 680 class ICustomPGApplicantEdit(ICustomPGApplicant): -
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/applicants/utils.py
r16501 r16533 38 38 ('Second Sitting Result (WAEC/NECO)','scd_sit_scan.pdf'), 39 39 ('Higher Qualification Result','hq_scan.pdf'), 40 ('Advanced Level Result','alr_scan .pdf'),40 ('Advanced Level Result','alr_scan'), 41 41 ('JAMB Result','jamb.pdf'), 42 42 ('Statement of Result','res_stat.pdf'), … … 72 72 'form.nysc_year': _(u'NYSC Information/Exemption Certificate'), 73 73 '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)'), 76 75 'form.notice': _(u'Application Process Information'), 77 76 'form.pp_school': _(u'Post Primary School Qualification'),
Note: See TracChangeset for help on using the changeset viewer.