- Timestamp:
- 27 Mar 2020, 07:50:10 (5 years ago)
- Location:
- main/waeup.kofa/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/CHANGES.txt
r16027 r16046 4 4 1.6.1.dev0 (unreleased) 5 5 ======================= 6 7 * Use consistent flow value formatting for CGPA. 6 8 7 9 * Bugfix: If level_session of a studylevel object has changed, -
main/waeup.kofa/trunk/src/waeup/kofa/students/browser.py
r16030 r16046 1358 1358 pnav = 4 1359 1359 1360 def format_float(self, value, prec): 1361 format_float = getUtility(IKofaUtils).format_float 1362 return format_float(value, prec) 1363 1360 1364 def update(self): 1361 1365 final_slip = getUtility(IExtFileStore).getFileByContext( -
main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/transcript.pt
r15203 r16046 21 21 </td> 22 22 <td> 23 <div tal:content="python: '%.3f' % tdata[1]">GPA</div>23 <div tal:content="python:view.format_float(tdata[1], 3)">CGPA</div> 24 24 </td> 25 25 </tr>
Note: See TracChangeset for help on using the changeset viewer.