Changeset 14497


Ignore:
Timestamp:
2 Feb 2017, 08:21:14 (8 years ago)
Author:
Henrik Bettermann
Message:

Remove some space.

Update CHANGES.txt.

Location:
main/waeup.kofa/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/CHANGES.txt

    r14491 r14497  
    441.4.2.dev0 (unreleased)
    55=======================
     6
     7* Add Raw Score Report to base package.
    68
    79* 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  
    3939    faccode = Attribute('Faculty to report')
    4040    depcode = Attribute('Department to report')
    41     certcode = Attribute('Certzificate to report')
     41    certcode = Attribute('Certificate to report')
    4242    creation_dt_string = Attribute('Human readable report creation datetime')
    4343
     
    237237                                   }),
    238238                    STYLE["Normal"]),
    239                     Spacer(1, 12),]
     239                    ]
    240240
    241241        for level in self.past_levels:
    242             pdf_data.append(Spacer(1, 40))
     242            pdf_data.append(Spacer(1, 20))
    243243            pdf_data += [Paragraph('<b>Level %s Courses</b>' % level,
    244244                        STYLE["Normal"]), Spacer(1, 20),]
     
    248248                      colWidths=col_widths)]
    249249        doc_title = translate(_('Raw Score Report'))
    250         pdf_data.append(Spacer(1, 40))
     250        pdf_data.append(Spacer(1, 20))
    251251        if self.signatures:
    252252            signaturetables = get_signature_tables(
Note: See TracChangeset for help on using the changeset viewer.