Changeset 18138 for main/waeup.aaue/trunk/src/waeup/aaue/students/export.py
- Timestamp:
- 22 Jul 2025, 12:00:44 (34 hours ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/export.py
r16916 r18138 234 234 value = context.passed_params[2] 235 235 elif name == 'level_gpa': 236 value = format_float(context.gpa_params[0], 3)236 value = format_float(context.gpa_params[0], 2) 237 237 elif name == 'failed_courses': 238 238 value = context.passed_params[4] … … 244 244 value = context.cumulative_params[4] 245 245 elif name == 'cgpa': 246 value = format_float(context.cumulative_params[0], 3)246 value = format_float(context.cumulative_params[0], 2) 247 247 elif name == 'remark': 248 248 value = getattr(context, 'remark', '')
Note: See TracChangeset for help on using the changeset viewer.