- Timestamp:
- 27 Nov 2019, 09:17:47 (5 years ago)
- Location:
- main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/applicants
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/applicants/interfaces.py
r15838 r15858 62 62 ) 63 63 64 subtype_vocab = SimpleKofaVocabulary( 65 (_('UTME'), 'utme'), 66 (_('Direct Entry'), 'de'), 67 (_('Inter Uni Transfer'), 'transfer'), 68 ) 69 64 70 class ICustomUGApplicant(IApplicantBaseData): 65 71 """An undergraduate applicant. … … 70 76 """ 71 77 78 subtype = schema.Choice( 79 title = _(u'Application Subtype'), 80 vocabulary = subtype_vocab, 81 required = False, 82 ) 72 83 disabilities = schema.Choice( 73 84 title = _(u'Disability'), … … 172 183 defaultFactory=list, 173 184 ) 185 hq_type = schema.Choice( 186 title = _(u'Qualification Obtained'), 187 required = False, 188 readonly = False, 189 vocabulary = high_qual, 190 ) 191 hq_matric_no = schema.TextLine( 192 title = _(u'Former Matric Number'), 193 required = False, 194 readonly = False, 195 ) 196 hq_degree = schema.Choice( 197 title = _(u'Class of Degree'), 198 required = False, 199 readonly = False, 200 vocabulary = high_grade, 201 ) 202 hq_school = schema.TextLine( 203 title = _(u'Institution Attended'), 204 required = False, 205 readonly = False, 206 ) 207 hq_session = schema.TextLine( 208 title = _(u'Years Attended'), 209 required = False, 210 readonly = False, 211 ) 212 hq_disc = schema.TextLine( 213 title = _(u'Discipline'), 214 required = False, 215 readonly = False, 216 ) 217 jamb_subjects = schema.Text( 218 title = _(u'Subjects and Scores'), 219 required = False, 220 ) 174 221 jamb_subjects = schema.Text( 175 222 title = _(u'Subjects and Scores'), … … 240 287 ) 241 288 289 ICustomUGApplicant[ 290 'subtype'].order = ICustomUGApplicant['lga'].order 242 291 ICustomUGApplicant[ 243 292 'locked'].order = ICustomUGApplicant['suspended'].order … … 293 342 """ 294 343 295 class ICustomUGApplicantEdit(I NigeriaUGApplicantEdit):344 class ICustomUGApplicantEdit(ICustomUGApplicant): 296 345 """An undergraduate applicant interface for edit forms. 297 346 … … 305 354 """ 306 355 307 class ICustomPGApplicantEdit(I NigeriaPGApplicantEdit):356 class ICustomPGApplicantEdit(ICustomPGApplicant): 308 357 """A postgraduate applicant interface for editing. 309 358 -
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/applicants/utils.py
r15762 r15858 44 44 'ase': ['Admission Screening Exercise', 'ASE'], # successor of putme 45 45 'pg': ['Postgraduate Programmes', 'PG'], 46 'ug': ['Undergraduate Programmes', 'UG'], 46 47 } 48 49 SEPARATORS_DICT = { 50 'form.applicant_id': _(u'Base Data'), 51 'form.course1': _(u'Programmes/Courses Desired'), 52 'form.hq_type': _(u'Higher Education Record (where applicable)'), 53 'form.presently': _(u'Course or Programme Presently Attending'), 54 'form.nysc_year': _(u'NYSC Information'), 55 'form.employer': _(u'Employment History'), 56 'form.jamb_subjects': _(u'JAMB Data'), 57 'form.jamb_subjects_list': _(u'JAMB Data'), 58 'form.notice': _(u'Application Process Information'), 59 'form.pp_school': _(u'Post Primary School Qualification'), 60 'form.presently_inst': _(u'Presently attending a course or programme'), 61 'form.fst_sit_fname': _(u'First Sitting Record'), 62 'form.scd_sit_fname': _(u'Second Sitting Record'), 63 'form.referees': _(u'Referees'), 64 }
Note: See TracChangeset for help on using the changeset viewer.