source: main/kofacustom.unidel/trunk/src/kofacustom/unidel/browser/pages.py @ 17929

Last change on this file since 17929 was 17696, checked in by Henrik Bettermann, 8 months ago

Allow users Abraham and site to remove records by import.

  • Property svn:keywords set to Id
File size: 2.2 KB
Line 
1## $Id: pages.py 17696 2024-02-08 09:39:23Z 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##
18import grok
19from waeup.kofa.browser.pages import (
20    SessionConfigurationAddFormPage, SessionConfigurationManageFormPage,
21    LoginPage, CertificatePage, CertificateManageFormPage,
22    DatacenterImportStep2)
23from waeup.kofa.university.interfaces import ICertificate
24from kofacustom.unidel.interfaces import (
25    ICustomSessionConfiguration, ICustomSessionConfigurationAdd)
26
27class CustomSessionConfigurationAddFormPage(SessionConfigurationAddFormPage):
28    """Add a session configuration object to configuration container.
29    """
30    form_fields = grok.AutoFields(ICustomSessionConfigurationAdd)
31
32class CustomSessionConfigurationManageFormPage(SessionConfigurationManageFormPage):
33    """Manage session configuration object.
34    """
35    form_fields = grok.AutoFields(ICustomSessionConfiguration)
36
37class CustomDatacenterImportStep2(DatacenterImportStep2):
38    """Manual import step 2: choose processor
39    """
40    @property
41    def show_remove_button(self):
42        return self.request.principal.id in (
43            'admin', 'zope.manager', 'zope.mgr',
44            'Abraham', 'jite')
45
46class CustomCertificatePage(CertificatePage):
47    """Index page for certificates.
48    """
49    form_fields = grok.AutoFields(ICertificate).omit(
50        'custom_float_1',
51        'custom_float_2',
52        #'school_fee_1',
53        #'school_fee_2',
54        'school_fee_3',
55        'school_fee_4',
56        'custom_textline_1',
57        'custom_textline_2',
58        )
59
Note: See TracBrowser for help on using the repository browser.