Changeset 15085
- Timestamp:
- 11 Jul 2018, 04:28:32 (6 years ago)
- Location:
- main/waeup.kofa/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/CHANGES.txt
r15055 r15085 4 4 1.6.1.dev0 (unreleased) 5 5 ======================= 6 7 * Allow `ApplicationsManager` to view statistics. 6 8 7 9 * Add payment session filter to payment exporters. -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/permissions.py
r14948 r15085 48 48 class ViewApplicationStatistics(grok.Permission): 49 49 """The ViewApplicationStatistics permission allows to perform statistical 50 evaluations. Only portal managers have this permission.50 evaluations. 51 51 """ 52 52 grok.name('waeup.viewApplicationStatistics') … … 96 96 class ApplicationsManager(grok.Role): 97 97 """The Applications Manager is allowed to edit all application records. 98 The role also allows to add payment tickets .98 The role also allows to add payment tickets and view statistics. 99 99 """ 100 100 grok.name('waeup.ApplicationsManager') 101 101 grok.title(u'Applications Manager') 102 102 grok.permissions('waeup.manageApplication', 'waeup.viewApplication', 103 'waeup.viewApplicantsTab', 'waeup.payApplicant') 103 'waeup.viewApplicantsTab', 'waeup.payApplicant', 104 'waeup.viewApplicationStatistics') 104 105 105 106 class StudentsCreator(grok.Role):
Note: See TracChangeset for help on using the changeset viewer.