Changeset 10311 for main/waeup.aaue/trunk/src/waeup
- Timestamp:
- 17 Jun 2013, 08:34:22 (11 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue/applicants
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/applicants/browser.py
r10301 r10311 46 46 ICustomUGApplicantEdit) 47 47 48 UG_OMIT_PDF_FIELDS = [ 49 element for element in UG_OMIT_PDF_FIELDS if not element == 'phone'] 50 UG_OMIT_PDF_FIELDS += ('reg_number',) 48 51 49 52 class CustomApplicantDisplayFormPage(NigeriaApplicantDisplayFormPage): … … 74 77 75 78 class CustomPDFApplicationSlip(NigeriaPDFApplicationSlip): 79 80 column_two_fields = ('applicant_id', 'reg_number', 81 'firstname', 'middlename', 'lastname', 'sex', 'date_of_birth') 76 82 77 83 @property -
main/waeup.aaue/trunk/src/waeup/aaue/applicants/interfaces.py
r10309 r10311 69 69 required = False, 70 70 ) 71 jamb_reg_number = schema.TextLine( 72 title = _(u'JAMB Registration Number'), 73 required = False, 74 ) 75 jamb_score = schema.Int( 76 title = _(u'Total JAMB Score'), 77 required = False, 78 ) 71 79 course1 = schema.Choice( 72 80 title = _(u'1st Choice Course of Study'), … … 159 167 readonly = False, 160 168 default = [], 161 )162 jamb_score = schema.Int(163 title = _(u'Total JAMB Score'),164 required = False,165 169 ) 166 170 notice = schema.Text( -
main/waeup.aaue/trunk/src/waeup/aaue/applicants/utils.py
r10309 r10311 38 38 'form.nysc_year': _(u'NYSC Information'), 39 39 'form.employer': _(u'Employment History'), 40 'form.jamb_ score': _(u'JAMB Data'),40 'form.jamb_reg_number': _(u'JAMB Data'), 41 41 'form.notice': _(u'Application Process Information'), 42 42 'form.pp_school': _(u'Post Primary School Qualification'),
Note: See TracChangeset for help on using the changeset viewer.