Changeset 15408 for main/waeup.aaue/trunk/src/waeup
- Timestamp:
- 14 May 2019, 10:02:40 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/students/browser.py
r15388 r15408 629 629 omit_fields = ('password', 'suspended', 'suspended_comment', 630 630 'phone', 'adm_code', 'sex', 'email', 'date_of_birth', 631 'department', 'current_mode', 'current_level', 'flash_notice') 631 'department', 'current_mode', 'current_level', 'flash_notice', 632 'transcript_remark') 632 633 633 634 @property … … 1227 1228 failed_perc = 0 1228 1229 if total: 1229 passed_perc = 100 * passed / total1230 failed_perc = 100 * failed / total1230 passed_perc = round(100.0 * passed / total) 1231 failed_perc = round(100.0 * failed / total) 1231 1232 dep = self.context.__parent__.__parent__.longtitle 1232 1233 fac = self.context.__parent__.__parent__.__parent__.longtitle
Note: See TracChangeset for help on using the changeset viewer.