Changeset 14607 for main/waeup.kofa/trunk
- Timestamp:
- 7 Mar 2017, 09:36:09 (8 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/students/reports
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/students/reports/level_report.py
r14606 r14607 125 125 depcode = None 126 126 certcode = None 127 title = translate(_('Level Report')) 127 128 128 129 pdfcreator = 'landscape' … … 267 268 pdf_data += [ 268 269 Table(table_data, style=TABLE_STYLE, colWidths=col_widths)] 269 doc_title = translate(_('Level Report'))270 doc_title = self.title 270 271 271 272 pdf_data.append(Spacer(1, 40)) -
main/waeup.kofa/trunk/src/waeup/kofa/students/reports/raw_score_report.py
r14606 r14607 113 113 depcode = None 114 114 certcode = None 115 title = translate(_('Raw Score Report')) 115 116 116 117 note = "" … … 259 260 style=TABLE_STYLE, 260 261 colWidths=col_widths)] 261 doc_title = translate(_('Raw Score Report'))262 doc_title = self.title 262 263 pdf_data.append(Spacer(1, 20)) 263 264 if self.signatures: -
main/waeup.kofa/trunk/src/waeup/kofa/students/reports/session_results_presentation.py
r14606 r14607 73 73 signatures = None 74 74 introduction = '' 75 title = translate(_('Presentation of Session Results')) 75 76 76 77 note = None … … 242 243 pdf_data += [Table(table_data, style=SUMMARY_STYLE, hAlign='LEFT')] 243 244 244 doc_title = translate(_('Presentation of Session Results'))245 doc_title = self.title 245 246 pdf_data.append(Spacer(1, 40)) 246 247 if self.signatures: -
main/waeup.kofa/trunk/src/waeup/kofa/students/reports/student_payment_statistics.py
r14606 r14607 194 194 p_session = None 195 195 pdfcreator = 'landscape' 196 title = translate(_('Student Payment Statistics')) 196 197 197 198 def __init__(self, session, mode, level, entry_session, p_session, … … 260 261 pdf_data += [ 261 262 Table(table_data, style=TABLE_STYLE, colWidths=col_widths)] 262 doc_title = translate(_('Student Payment Statistics'))263 doc_title = self.title 263 264 right_footer = translate( 264 265 _('${a} Student Payments - ${b} -', -
main/waeup.kofa/trunk/src/waeup/kofa/students/reports/student_statistics.py
r14606 r14607 144 144 mode = None 145 145 pdfcreator = 'landscape' 146 title = translate(_('Student Statistics')) 146 147 147 148 def __init__(self, session, mode, level, breakdown, author='System'): … … 186 187 pdf_data += [ 187 188 Table(table_data, style=TABLE_STYLE, colWidths=col_widths)] 188 doc_title = translate(_('Student Statistics'))189 doc_title = self.title 189 190 right_footer = translate( 190 191 _('${a} Students - ${b} -',
Note: See TracChangeset for help on using the changeset viewer.