source: main/kofacustom.lpng/trunk/src/kofacustom/lpng/applicants/viewlets.py @ 17220

Last change on this file since 17220 was 17220, checked in by Henrik Bettermann, 22 months ago

Fix typo.

  • Property svn:keywords set to Id
File size: 2.7 KB
Line 
1## $Id: viewlets.py 17220 2022-12-13 14:40:36Z 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.interfaces import IKofaObject
20from waeup.kofa.browser.viewlets import ManageActionButton
21from waeup.kofa.applicants.viewlets import ApplicantsAuthTab
22from waeup.kofa.applicants.browser import OnlinePaymentDisplayFormPage
23from kofacustom.lpng.applicants.interfaces import (
24    ICustomApplicant, ICustomApplicantOnlinePayment)
25from kofacustom.lpng.applicants.browser import (ApplicantDisplayFormPage,
26    ApplicantEditFormPage)
27
28from kofacustom.lpng.interfaces import MessageFactory as _
29
30grok.context(IKofaObject) # Make IKofaObject the default context
31
32class ApplicantsAnonTab(ApplicantsAuthTab):
33    """Applicants tab in primary navigation.
34
35    Do not display the tab.
36    """
37    grok.require('waeup.Anonymous')
38    tab_title = _(u'Application')
39
40    @property
41    def link_target(self):
42        return
43
44class SelectPunitActionButton(ManageActionButton):
45    grok.order(2)
46    grok.context(ICustomApplicant)
47    grok.require('waeup.handleApplication')
48    grok.view(ApplicantDisplayFormPage)
49    icon = 'actionicon_polling.png'
50    text = _('Locate Polling Unit')
51    target ='punitformpage'
52
53class MakeUSSDDonationActionButton(ManageActionButton):
54    grok.order(1)
55    grok.context(ICustomApplicant)
56    grok.require('waeup.handleApplication')
57    grok.view(ApplicantDisplayFormPage)
58    icon = 'actionicon_donate.png'
59    text = _('Make Donation')
60    target ='addbp'
61
62class MakeUSSDDonationActionButton2(MakeUSSDDonationActionButton):
63    grok.view(ApplicantEditFormPage)
64
65class MakeUSSDDonationActionButton3(ManageActionButton):
66    grok.order(1)
67    grok.context(ICustomApplicantOnlinePayment)
68    grok.view(OnlinePaymentDisplayFormPage)
69    grok.require('waeup.payApplicant')
70    icon = 'actionicon_pay.png'
71    text = _('Pay via USSD')
72    target = 'ussdinfo'
73
74    @property
75    def target_url(self):
76        if self.context.p_state != 'unpaid':
77            return ''
78        if self.context.amount_auth == 0:
79            return ''
80        return self.view.url(self.view.context, self.target)
Note: See TracBrowser for help on using the repository browser.