source: main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/students/permissions.py @ 13712

Last change on this file since 13712 was 13634, checked in by Henrik Bettermann, 9 years ago

Rename bursary.

  • Property svn:keywords set to Id
File size: 1.8 KB
Line 
1## $Id: permissions.py 13634 2016-01-18 17:22:05Z henrik $
2##
3## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann
4## This program is free software; you can redistribute it and/or modify
5## it under the terms of the GNU General Public License as published by
6## the Free Software Foundation; either version 2 of the License, or
7## (at your option) any later version.
8##
9## This program is distributed in the hope that it will be useful,
10## but WITHOUT ANY WARRANTY; without even the implied warranty of
11## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12## GNU General Public License for more details.
13##
14## You should have received a copy of the GNU General Public License
15## along with this program; if not, write to the Free Software
16## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17##
18"""
19More permissions and roles for the students section.
20"""
21import grok
22
23
24class ClearStudentFinancially(grok.Permission):
25    """The ClearStudentFinancially permission is needed to clear students
26    financially or to reject financial clearance. This permission is
27    meant for financial clearance officers.
28    """
29    grok.name('waeup.clearStudentFinancially')
30
31
32class BursaryOfficer(grok.Role):
33    """Financial Clearance Officers (aka Bursary Officers)
34    can export bursary data. They can't access the
35    Data Center but see student data export buttons in the Academic Section.
36
37    This role overwrites the same-named role in waeup.kofa. In
38    kofacustom.nigeria bursary officers are also allowed to clear
39    students financially.
40    """
41    grok.name('waeup.BursaryOfficer')
42    grok.title(u'Bursary Officer')
43    grok.permissions('waeup.showStudents',
44                     'waeup.viewAcademics',
45                     'waeup.exportBursaryData',
46                     'waeup.clearStudentFinancially')
Note: See TracBrowser for help on using the repository browser.