Changeset 15186
- Timestamp:
- 14 Oct 2018, 16:48:34 (6 years ago)
- Location:
- main/kofacustom.dspg/trunk/src/kofacustom/dspg/applicants
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.dspg/trunk/src/kofacustom/dspg/applicants/export.py
r14716 r15186 25 25 INigeriaUGApplicant, INigeriaPGApplicant) 26 26 from kofacustom.dspg.applicants.interfaces import ( 27 ICustomUGApplicant, ICustomPGApplicant )27 ICustomUGApplicant, ICustomPGApplicant, ICustomSpecialApplicant) 28 28 29 29 class CustomApplicantExporter(NigeriaApplicantExporter): … … 34 34 iface_names(ICustomUGApplicant) + 35 35 iface_names(ICustomPGApplicant) + 36 iface_names(ICustomSpecialApplicant) + 36 37 iface_names(INigeriaUGApplicant) + 37 38 iface_names(INigeriaPGApplicant) + -
main/kofacustom.dspg/trunk/src/kofacustom/dspg/applicants/interfaces.py
r14865 r15186 291 291 ) 292 292 293 matric_number = schema.TextLine( 294 title = _(u'Matric Number'), 295 required = False, 296 readonly = False, 297 ) 298 299 department = schema.TextLine( 300 title = _(u'Department'), 301 required = False, 302 readonly = False, 303 ) 304 293 305 class ICustomApplicant(ICustomUGApplicant, ICustomPGApplicant, 294 306 ICustomSpecialApplicant):
Note: See TracChangeset for help on using the changeset viewer.