Ignore:
Timestamp:
16 Jun 2013, 08:52:25 (11 years ago)
Author:
Henrik Bettermann
Message:

Insert correct personal pronoun in declaration text.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue/applicants/browser.py

    r10298 r10301  
    7575class CustomPDFApplicationSlip(NigeriaPDFApplicationSlip):
    7676
    77     note = '''
     77    @property
     78    def note(self):
     79        if self.context.sex == 'm':
     80            pronoun = 'he'
     81        else:
     82            pronoun = 'she'
     83        return '''
    7884
    79 The applicant has acknowledged that, if discovered at any time that she/he
    80 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.'''
     85The applicant has acknowledged that, if discovered at any time that %s does not possess
     86any of the qualifications which %s claims %s has obtained, %s will be expelled from the
     87University and shall not be re-admitted for the same or any other programme, even if %s
     88has upgraded previous qualifications or possess additional qualifications.''' % (
     89    pronoun, pronoun, pronoun, pronoun, pronoun)
    8490
    8591    @property
Note: See TracChangeset for help on using the changeset viewer.