Ignore:
Timestamp:
3 Aug 2016, 10:24:02 (8 years ago)
Author:
Henrik Bettermann
Message:

Fill table with 'N/R' if course not registered.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.aaue/trunk/src/waeup/aaue/students/reports/raw_score_report.py

    r14048 r14049  
    151151            result = line[-1].get(code)
    152152            if not result:
    153                 continue
    154             scores += ('%s%s' % (result[0], result[1]),)
     153                scores += ('N/R',)
     154            else:
     155                scores += ('%s%s' % (result[0], result[1]),)
    155156        composed_line += scores
    156157        table.append(composed_line)
Note: See TracChangeset for help on using the changeset viewer.