Ignore:
Timestamp:
11 Jul 2018, 04:28:32 (6 years ago)
Author:
Henrik Bettermann
Message:

Allow ApplicationsManager to view statistics.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/permissions.py

    r14948 r15085  
    4848class ViewApplicationStatistics(grok.Permission):
    4949    """The ViewApplicationStatistics permission allows to perform statistical
    50     evaluations. Only portal managers have this permission.
     50    evaluations.
    5151    """
    5252    grok.name('waeup.viewApplicationStatistics')
     
    9696class ApplicationsManager(grok.Role):
    9797    """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.
    9999    """
    100100    grok.name('waeup.ApplicationsManager')
    101101    grok.title(u'Applications Manager')
    102102    grok.permissions('waeup.manageApplication', 'waeup.viewApplication',
    103                      'waeup.viewApplicantsTab', 'waeup.payApplicant')
     103                     'waeup.viewApplicantsTab', 'waeup.payApplicant',
     104                     'waeup.viewApplicationStatistics')
    104105
    105106class StudentsCreator(grok.Role):
Note: See TracChangeset for help on using the changeset viewer.