Changeset 10274
- Timestamp:
- 3 Jun 2013, 15:06:01 (11 years ago)
- Location:
- main/waeup.futminna/trunk/src/waeup/futminna/applicants
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.futminna/trunk/src/waeup/futminna/applicants/browser_templates/applicanteditpage.pt
r10234 r10274 36 36 <tbody> 37 37 <tal:widgets content="structure provider:widgets" /> 38 <tr> 39 <td class="separator" colspan="2">File Uploads</td> 40 </tr> 38 41 <tr> 39 42 <td class="fieldname" i18n:translate=""> -
main/waeup.futminna/trunk/src/waeup/futminna/applicants/interfaces.py
r10228 r10274 199 199 required = False, 200 200 ) 201 hq_type = schema.Choice( 202 title = _(u'Qualification Obtained'), 203 required = False, 204 readonly = False, 205 vocabulary = high_qual, 206 ) 207 hq_matric_no = schema.TextLine( 208 title = _(u'Former Matric Number'), 209 required = False, 210 readonly = False, 211 ) 212 hq_degree = schema.Choice( 213 title = _(u'Class of Degree'), 214 required = False, 215 readonly = False, 216 vocabulary = high_grade, 217 ) 218 hq_school = schema.TextLine( 219 title = _(u'Institution Attended'), 220 required = False, 221 readonly = False, 222 ) 223 hq_session = schema.TextLine( 224 title = _(u'Years Attended'), 225 required = False, 226 readonly = False, 227 ) 228 hq_disc = schema.TextLine( 229 title = _(u'Discipline'), 230 required = False, 231 readonly = False, 232 ) 201 233 course1 = schema.Choice( 202 234 title = _(u'Programme desired'), -
main/waeup.futminna/trunk/src/waeup/futminna/applicants/utils.py
r10218 r10274 31 31 32 32 SEPARATORS_DICT = { 33 'form.student_id': _(u'Process Data'), 33 'form.applicant_id': _(u'Base Data'), 34 'form.course1': _(u'Programmes/Courses Desired'), 35 'form.hq_type': _(u'Higher Education Record'), 36 #'form.notice': _(u'Application Process Information'), 37 'form.pp_school': _(u'Post Primary School Qualification'), 38 'form.notice': _(u'Process Data'), 39 'form.jamb_subjects': _(u'JAMB Data'), 34 40 } 35 41
Note: See TracChangeset for help on using the changeset viewer.