Changeset 14599 for main/waeup.aaue/trunk/src
- Timestamp:
- 2 Mar 2017, 08:34:25 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/reports/session_results_presentation.py
r14592 r14599 32 32 def introduction (self): 33 33 havenot = '' 34 if len(self.data[0]): 35 havenot = '/have not' 34 plurals = '' 35 num_students = sum([len(i) for i in self.data]) 36 if num_students == 0: 37 return '' 38 if num_students > 1: 39 plurals = 's' 40 if len(self.data[0]): 41 havenot = 'have/have not' 42 else: 43 havenot = 'have' 44 else: 45 if self.data[0]: 46 havenot = 'has not' 47 else: 48 havenot = 'has' 49 36 50 text = """I present to Senate, on behalf of the Faculty Board, 37 51 the results of courses taught and examinations held this academic session. 38 The following candidate (s) have%s satisfied the degree requirements39 of the Faculty and have%s qualified for the award of a degree as follows:40 """ % ( havenot, havenot)52 The following candidate%s %s satisfied the degree requirements 53 of the Faculty and %s qualified for the award of a degree as follows: 54 """ % (plurals, havenot, havenot) 41 55 return text 42 56
Note: See TracChangeset for help on using the changeset viewer.