Changeset 16427 for main/waeup.uniben/trunk
- Timestamp:
- 23 Mar 2021, 06:51:01 (4 years ago)
- Location:
- main/waeup.uniben/trunk/src/waeup/uniben/students
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/students/browser.py
r16405 r16427 513 513 grok.template('studylevelpage') 514 514 515 @property 516 def view_scores_allowed(self): 517 return checkPermission('waeup.manageStudent', self.context) 518 515 519 class CustomExportPDFCourseRegistrationSlip( 516 520 ExportPDFCourseRegistrationSlip): -
main/waeup.uniben/trunk/src/waeup/uniben/students/browser_templates/studylevelpage.pt
r14577 r16427 28 28 <th i18n:translate="">Cred.</th> 29 29 <th i18n:translate="">Requ.</th> 30 <th tal:condition="view/view_scores_allowed" 31 i18n:translate="">Score</th> 30 32 <th i18n:translate="">Grade</th> 31 33 <th i18n:translate="">CO</th> … … 45 47 <td tal:content="value/credits">CREDITS</td> 46 48 <td tal:content="value/mandatory">MANDATORY</td> 49 <td tal:condition="view/view_scores_allowed" 50 tal:content="value/score|nothing">SCORE</td> 47 51 <td tal:content="value/grade|nothing">GRADE</td> 48 52 <td tal:content="value/carry_over">CO</td>
Note: See TracChangeset for help on using the changeset viewer.