Ignore:
Timestamp:
22 Jul 2025, 12:00:44 (34 hours ago)
Author:
Henrik Bettermann
Message:

Add 25 school fees.
Fix tests.
Change format of CGPA.

File:
1 edited

Legend:

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

    r16916 r18138  
    234234                value = context.passed_params[2]
    235235            elif name == 'level_gpa':
    236                 value = format_float(context.gpa_params[0], 3)
     236                value = format_float(context.gpa_params[0], 2)
    237237            elif name == 'failed_courses':
    238238                value = context.passed_params[4]
     
    244244                value = context.cumulative_params[4]
    245245            elif name == 'cgpa':
    246                 value = format_float(context.cumulative_params[0], 3)
     246                value = format_float(context.cumulative_params[0], 2)
    247247            elif name == 'remark':
    248248                value = getattr(context, 'remark', '')
Note: See TracChangeset for help on using the changeset viewer.