source: main/kofacustom.koa/trunk/src/kofacustom/koa/applicants/browser.py @ 17357

Last change on this file since 17357 was 17357, checked in by Henrik Bettermann, 18 months ago

Rename skeleton koa.

  • Property svn:keywords set to Id
File size: 2.0 KB
Line 
1## $Id: browser.py 17357 2023-03-15 12:27:16Z 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"""UI components for basic applicants and related components.
19"""
20import grok
21from waeup.kofa.applicants.browser import (
22    ApplicantRegistrationPage, ApplicantsContainerPage)
23from kofacustom.nigeria.applicants.browser import (
24    NigeriaApplicantDisplayFormPage,
25    NigeriaApplicantManageFormPage,
26    NigeriaApplicantEditFormPage,
27    NigeriaPDFApplicationSlip)
28
29from kofacustom.nigeria.applicants.interfaces import (
30    INigeriaPGApplicant, INigeriaUGApplicant,
31    INigeriaPGApplicantEdit, INigeriaUGApplicantEdit,
32    INigeriaApplicantOnlinePayment,
33    UG_OMIT_DISPLAY_FIELDS,
34    UG_OMIT_PDF_FIELDS,
35    UG_OMIT_MANAGE_FIELDS,
36    UG_OMIT_EDIT_FIELDS,
37    PG_OMIT_DISPLAY_FIELDS,
38    PG_OMIT_PDF_FIELDS,
39    PG_OMIT_MANAGE_FIELDS,
40    PG_OMIT_EDIT_FIELDS,
41    )
42from kofacustom.koa.applicants.interfaces import (
43    ICustomPGApplicant, ICustomUGApplicant, ICustomApplicant,
44    ICustomPGApplicantEdit, ICustomUGApplicantEdit,
45    ICustomApplicantOnlinePayment,
46    )
47
48from kofacustom.koa.interfaces import MessageFactory as _
49
50class CustomApplicantEditFormPage(NigeriaApplicantEditFormPage):
51    """An applicant-centered edit view for applicant data.
52    """
53
54    def unremovable(self, ticket):
55        return True
56
Note: See TracBrowser for help on using the repository browser.