Ignore:
Timestamp:
8 Dec 2016, 06:59:24 (8 years ago)
Author:
Henrik Bettermann
Message:

Provide superscript option remarks (needed by AAUE).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/students/reports/level_report.py

    r14269 r14326  
    129129            line[5].replace('m_', '<u>').replace('_m', '</u>'), SMALL_PARA_STYLE)
    130130        line = line[:5] + (failed_courses,) + line[6:]
     131        # Superscript in remarks (needed by AAUE)
     132        remark = Paragraph(
     133            line[9].replace('s_', '<super>').replace('_s', '</super>'), SMALL_PARA_STYLE)
     134        line = line[:9] + (remark,)
    131135        line = (sn,) + line
    132136        table.append(line)
Note: See TracChangeset for help on using the changeset viewer.