1 | ## $Id: browser.py 16718 2021-11-24 06:52: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 | """ |
---|
20 | import grok |
---|
21 | from waeup.kofa.applicants.browser import ( |
---|
22 | ApplicantRegistrationPage, ApplicantsContainerPage) |
---|
23 | from kofacustom.nigeria.applicants.browser import ( |
---|
24 | NigeriaApplicantDisplayFormPage, |
---|
25 | NigeriaApplicantManageFormPage, |
---|
26 | NigeriaApplicantEditFormPage, |
---|
27 | NigeriaPDFApplicationSlip) |
---|
28 | |
---|
29 | from 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 | ) |
---|
42 | from kofacustom.skeleton.applicants.interfaces import ( |
---|
43 | ICustomPGApplicant, ICustomUGApplicant, ICustomApplicant, |
---|
44 | ICustomPGApplicantEdit, ICustomUGApplicantEdit, |
---|
45 | ICustomApplicantOnlinePayment, |
---|
46 | ) |
---|
47 | |
---|
48 | from kofacustom.skeleton.interfaces import MessageFactory as _ |
---|
49 | |
---|
50 | class CustomApplicantEditFormPage(NigeriaApplicantEditFormPage): |
---|
51 | """An applicant-centered edit view for applicant data. |
---|
52 | """ |
---|
53 | |
---|
54 | def unremovable(self, ticket): |
---|
55 | return True |
---|
56 | |
---|