Changeset 15085


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

Allow ApplicationsManager to view statistics.

Location:
main/waeup.kofa/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/CHANGES.txt

    r15055 r15085  
    441.6.1.dev0 (unreleased)
    55=======================
     6
     7* Allow `ApplicationsManager` to view statistics.
    68
    79* Add payment session filter to payment exporters.
  • 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.