Changeset 14484 for main/waeup.kofa/trunk/src/waeup/kofa
- Timestamp:
- 31 Jan 2017, 15:14:26 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/students/reports/session_results_presentation.py
r14481 r14484 218 218 gpa_count = len(self.data[gpa_class]) 219 219 total_count += gpa_count 220 table_data += [(gpa_class_name + ':', gpa_count)]220 table_data += [(gpa_class_name + ':', '%02d' % gpa_count)] 221 221 #pdf_data += [Paragraph('%s: %s' 222 222 # % (gpa_class_name, gpa_count), STYLE["Normal"])] 223 223 pass 224 224 #pdf_data += [Paragraph('Total: %s' % (total_count), STYLE["Normal"])] 225 table_data += [('Total:', total_count)]225 table_data += [('Total:', '%02d' % total_count)] 226 226 pdf_data += [Table(table_data, style=SUMMARY_STYLE, hAlign='LEFT')] 227 227
Note: See TracChangeset for help on using the changeset viewer.