[7696] | 1 | ## $Id: utils.py 14056 2016-08-07 03:25:58Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
| 4 | ## This program is free software; you can redistribute it and/or modify |
---|
| 5 | ## it under the terms of the GNU General Public License as published by |
---|
| 6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | ## (at your option) any later version. |
---|
| 8 | ## |
---|
| 9 | ## This program is distributed in the hope that it will be useful, |
---|
| 10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | ## GNU General Public License for more details. |
---|
| 13 | ## |
---|
| 14 | ## You should have received a copy of the GNU General Public License |
---|
| 15 | ## along with this program; if not, write to the Free Software |
---|
| 16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 17 | ## |
---|
| 18 | """General helper functions and utilities for the application section. |
---|
| 19 | """ |
---|
| 20 | |
---|
[8528] | 21 | from time import time |
---|
[8247] | 22 | import sys |
---|
[7696] | 23 | import grok |
---|
[8834] | 24 | from kofacustom.nigeria.applicants.utils import NigeriaApplicantsUtils |
---|
[10132] | 25 | from waeup.kwarapoly.interfaces import MessageFactory as _ |
---|
[7696] | 26 | |
---|
[8247] | 27 | |
---|
[8834] | 28 | |
---|
| 29 | class ApplicantsUtils(NigeriaApplicantsUtils): |
---|
[7696] | 30 | """A collection of parameters and methods subject to customization. |
---|
| 31 | """ |
---|
[8935] | 32 | |
---|
| 33 | APP_TYPES_DICT = { |
---|
[10133] | 34 | 'rmd': ['Remedial Programme', 'RP'], |
---|
| 35 | 'hndft': ['HND Full-Time Programmes', 'HNDFT'], |
---|
| 36 | 'hndpt': ['HND Part-Time Programmes', 'HNDPT'], |
---|
[13279] | 37 | 'hndwe': ['HND Weekend Programmes', 'HNDWE'], |
---|
[10133] | 38 | 'ndft': ['ND Full-Time Programmes', 'NDFT'], |
---|
| 39 | 'ndpt': ['ND Part-Time Programmes', 'NDPT'], |
---|
[13279] | 40 | 'ndwe': ['ND Weekend Programmes', 'NDWE'], |
---|
[8935] | 41 | 'putme': ['Post-UTME Screening Exercise', 'PUTME'], |
---|
| 42 | 'app': ['General Studies', 'APP'], |
---|
| 43 | 'cest': ['Common Entry Screening Test', 'CEST'], |
---|
| 44 | 'ct': ['Certificate Programmes', 'CTP'], |
---|
[8958] | 45 | 'pgft': ['Postgraduate Full-Time Programmes', 'PG'], |
---|
[10588] | 46 | 'pgpt': ['Postgraduate Part-Time Programmes', 'PG'], |
---|
[14056] | 47 | 'prermd': ['Pre-Admission Security Screening and Results Verification: Remedial Forms', 'RP'], |
---|
| 48 | 'prehndft': ['Pre-Admission Security Screening and Results Verification: HND Full-Time Forms', 'HNDFT'], |
---|
| 49 | 'prehndpt': ['Pre-Admission Security Screening and Results Verification: HND Part-Time Forms', 'HNDPT'], |
---|
| 50 | 'prehndwe': ['Pre-Admission Security Screening and Results Verification: HND Weekend Forms', 'HNDWE'], |
---|
| 51 | 'prendft': ['Pre-Admission Security Screening and Results Verification: ND Full-Time Forms', 'NDFT'], |
---|
| 52 | 'prendpt': ['Pre-Admission Security Screening and Results Verification: ND Part-Time Forms', 'NDPT'], |
---|
| 53 | 'prendwe': ['Pre-Admission Security Screening and Results Verification: ND Weekend Forms', 'NDWE'], |
---|
| 54 | 'prejambites': ['Pre-Admission Security Screening and Results Verification: JAMBITES', 'JMB'], |
---|
[10844] | 55 | 'special': ['Supplementary Payment', 'SP'], |
---|
[8935] | 56 | } |
---|
[10132] | 57 | |
---|
| 58 | SEPARATORS_DICT = { |
---|
| 59 | 'form.applicant_id': _(u'Base Data'), |
---|
| 60 | 'form.course1': _(u'Programmes/Courses Desired'), |
---|
| 61 | 'form.hq_type': _(u'Higher Education Record'), |
---|
| 62 | 'form.jamb_subjects': _(u'JAMB Data'), |
---|
| 63 | 'form.notice': _(u'Application Process Information'), |
---|
| 64 | 'form.pp_school': _(u'Post Primary School Qualification'), |
---|
| 65 | 'form.presently_inst': _(u'Presently attending a course or programme'), |
---|
| 66 | 'form.olevel_type': _(u"'O' Level Record"), |
---|
| 67 | } |
---|