Changeset 16694 for main/waeup.aaue/trunk/src/waeup
- Timestamp:
- 3 Nov 2021, 09:45:56 (3 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue/students
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/reports/session_results_presentation.py
r16693 r16694 117 117 """ 118 118 119 title = 'Presentation of Results to Senate' 120 121 @property 122 def right_footer(self): 123 return self.title + ' (Graduating Students) - %s -' % self.session 119 title = 'Presentation of Results to Senate (Graduating Students)' 124 120 125 121 def _excluded(self, level_obj): -
main/waeup.aaue/trunk/src/waeup/aaue/students/utils.py
r16677 r16694 128 128 certificate = getattr(level_obj.__parent__,'certificate', None) 129 129 end_level = getattr(certificate, 'end_level', None) 130 if end_level and level_obj.level <= end_level \ 131 and level_obj.gpa_params[1] < MINIMUM_UNITS_THRESHOLD: 130 if level_obj.gpa_params[1] < MINIMUM_UNITS_THRESHOLD: 132 131 # credits taken below limit 133 132 return 0
Note: See TracChangeset for help on using the changeset viewer.