Changeset 10301 for main/waeup.aaue/trunk/src/waeup/aaue
- Timestamp:
- 16 Jun 2013, 08:52:25 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/applicants/browser.py
r10298 r10301 75 75 class CustomPDFApplicationSlip(NigeriaPDFApplicationSlip): 76 76 77 note = ''' 77 @property 78 def note(self): 79 if self.context.sex == 'm': 80 pronoun = 'he' 81 else: 82 pronoun = 'she' 83 return ''' 78 84 79 The applicant has acknowledged that, if discovered at any time that she/he80 does not possess any of the qualifications which she/he claims she/he has obtained, 81 she/he will be expelled from the University and shall not be re-admitted for the same 82 or any other programme, even if she/he has upgraded her/his previous qualifications 83 or possess additional qualifications.''' 85 The applicant has acknowledged that, if discovered at any time that %s does not possess 86 any of the qualifications which %s claims %s has obtained, %s will be expelled from the 87 University and shall not be re-admitted for the same or any other programme, even if %s 88 has upgraded previous qualifications or possess additional qualifications.''' % ( 89 pronoun, pronoun, pronoun, pronoun, pronoun) 84 90 85 91 @property
Note: See TracChangeset for help on using the changeset viewer.