Changeset 14497
- Timestamp:
- 2 Feb 2017, 08:21:14 (8 years ago)
- Location:
- main/waeup.kofa/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/CHANGES.txt
r14491 r14497 4 4 1.4.2.dev0 (unreleased) 5 5 ======================= 6 7 * Add Raw Score Report to base package. 6 8 7 9 * Only user 'admin' is allowed to access the `DatacenterSettings` page. -
main/waeup.kofa/trunk/src/waeup/kofa/students/reports/raw_score_report.py
r14495 r14497 39 39 faccode = Attribute('Faculty to report') 40 40 depcode = Attribute('Department to report') 41 certcode = Attribute('Cert zificate to report')41 certcode = Attribute('Certificate to report') 42 42 creation_dt_string = Attribute('Human readable report creation datetime') 43 43 … … 237 237 }), 238 238 STYLE["Normal"]), 239 Spacer(1, 12),]239 ] 240 240 241 241 for level in self.past_levels: 242 pdf_data.append(Spacer(1, 40))242 pdf_data.append(Spacer(1, 20)) 243 243 pdf_data += [Paragraph('<b>Level %s Courses</b>' % level, 244 244 STYLE["Normal"]), Spacer(1, 20),] … … 248 248 colWidths=col_widths)] 249 249 doc_title = translate(_('Raw Score Report')) 250 pdf_data.append(Spacer(1, 40))250 pdf_data.append(Spacer(1, 20)) 251 251 if self.signatures: 252 252 signaturetables = get_signature_tables(
Note: See TracChangeset for help on using the changeset viewer.