source: main/waeup.kofa/trunk/src/waeup/kofa/applicants/viewlets.py @ 10009

Last change on this file since 10009 was 9901, checked in by Henrik Bettermann, 12 years ago

Change button label.

  • Property svn:keywords set to Id
File size: 8.2 KB
RevLine 
[7438]1## $Id: viewlets.py 9901 2013-01-17 15:55:22Z 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
[7819]19from waeup.kofa.interfaces import IKofaObject
[7811]20from waeup.kofa.students.viewlets import PrimaryStudentNavTab
[8684]21from waeup.kofa.browser.viewlets import (
22    ManageActionButton, PrimaryNavTab, AddActionButton)
[7811]23from waeup.kofa.applicants.interfaces import (
[7438]24    IApplicant, IApplicantsRoot, IApplicantsContainer,
[8563]25    IApplicantOnlinePayment
[7438]26    )
[7811]27from waeup.kofa.applicants.browser import (
[7438]28    ApplicantsRootPage, ApplicantsContainerPage, ApplicantManageFormPage,
[8563]29    ApplicantDisplayFormPage, OnlinePaymentDisplayFormPage,
30    ApplicantsContainerManageFormPage, ApplicantsStatisticsPage
[7438]31    )
32
[7811]33from waeup.kofa.interfaces import MessageFactory as _
[7674]34
[7819]35grok.context(IKofaObject) # Make IKofaObject the default context
[7438]36grok.templatedir('browser_templates')
37
38class ApplicantsAuthTab(PrimaryNavTab):
39    """Applicants tab in primary navigation.
40    """
[7819]41    grok.context(IKofaObject)
[7438]42    grok.order(3)
43    grok.require('waeup.viewApplicantsTab')
44    pnav = 3
[7674]45    tab_title = _(u'Applicants')
[7438]46
47    @property
48    def link_target(self):
49        return self.view.application_url('applicants')
50
51class ApplicantsAnonTab(ApplicantsAuthTab):
52    """Applicants tab in primary navigation.
53
54    Display tab only for anonymous. Authenticated users can call the
55    form from the user navigation bar.
56    """
57    grok.require('waeup.Anonymous')
[7674]58    tab_title = _(u'Application')
[7438]59
60    # Also zope.manager has role Anonymous.
61    # To avoid displaying this tab, we have to check the principal id too.
62    @property
63    def link_target(self):
64        if self.request.principal.id == 'zope.anybody':
65            return self.view.application_url('applicants')
66        return
67
68class MyApplicationDataTab(PrimaryStudentNavTab):
69    """MyData-tab in primary navigation.
70    """
71    grok.order(3)
72    grok.require('waeup.viewMyApplicationDataTab')
73    pnav = 3
[7714]74    tab_title = _(u'My Data')
[7438]75
76    @property
77    def link_target(self):
78        try:
79            container, application_number = self.request.principal.id.split('_')
80        except ValueError:
81            return
82        rel_link = '/applicants/%s/%s' % (container, application_number)
83        return self.view.application_url() + rel_link
84
[8406]85class ApplicantsRootSearchActionButton(ManageActionButton):
[8404]86    grok.order(1)
87    grok.context(IApplicantsRoot)
88    grok.view(ApplicantsRootPage)
89    grok.require('waeup.viewApplication')
90    text = _('Search applicants')
91    icon = 'actionicon_search.png'
92    target = '@@search'
93
[8406]94class ApplicantsRootManageActionButton(ManageActionButton):
[8404]95    grok.order(2)
[7438]96    grok.context(IApplicantsRoot)
97    grok.view(ApplicantsRootPage)
98    grok.require('waeup.manageApplication')
[7714]99    text = _('Manage application section')
[7438]100
101class ApplicantRegisterActionButton(ManageActionButton):
[8563]102    grok.order(1)
[7438]103    grok.context(IApplicantsContainer)
104    grok.view(ApplicantsContainerPage)
105    grok.require('waeup.Anonymous')
106    icon = 'actionicon_login.png'
[7714]107    text = _('Register for application')
[7438]108    target = 'register'
109
[8684]110class ApplicantsContainerAddActionButton(AddActionButton):
[8563]111    grok.order(1)
112    grok.context(IApplicantsContainer)
113    grok.view(ApplicantsContainerManageFormPage)
[8684]114    grok.require('waeup.manageApplication')
115    text = _('Add applicant')
116    target = 'addapplicant'
117
118class ApplicantsContainerStatisticsActionButton(ManageActionButton):
119    grok.order(2)
120    grok.context(IApplicantsContainer)
121    grok.view(ApplicantsContainerManageFormPage)
[8565]122    grok.require('waeup.viewApplicationStatistics')
[8563]123    icon = 'actionicon_statistics.png'
124    text = _('Container statistics')
125    target = 'statistics'
126
[9759]127class ApplicantsContainerStatisticsActionButton2(
128        ApplicantsContainerStatisticsActionButton):
[8563]129    grok.order(3)
130    grok.view(ApplicantsContainerPage)
131
132class ApplicantsContainerManageActionButton(ManageActionButton):
133    grok.order(2)
134    grok.context(IApplicantsContainer)
135    grok.view(ApplicantsContainerPage)
136    grok.require('waeup.manageApplication')
137    text = _('Manage container')
138    target = 'manage'
139
[9901]140class ApplicantsRootCreateStudentsActionButton(ManageActionButton):
[9900]141    grok.order(3)
142    grok.context(IApplicantsRoot)
143    grok.view(ApplicantsRootPage)
[9759]144    grok.require('waeup.managePortal')
145    icon = 'actionicon_entrance.png'
[9901]146    text = _('Create students')
[9759]147    target ='createallstudents'
148
[9901]149class ApplicantsContainerCreateStudentsActionButton(ManageActionButton):
150    grok.order(1)
[9900]151    grok.context(IApplicantsContainer)
152    grok.view(ApplicantsStatisticsPage)
[9901]153    grok.require('waeup.managePortal')
154    icon = 'actionicon_entrance.png'
155    text = _('Create students')
156    target ='createallstudents'
[9900]157
[7438]158class ApplicantViewActionButton(ManageActionButton):
159    grok.context(IApplicant)
160    grok.view(ApplicantManageFormPage)
161    grok.require('waeup.viewApplication')
162    icon = 'actionicon_view.png'
[7714]163    text = _('View application record')
[7438]164    target = 'index'
165
166class ApplicantManageActionButton(ManageActionButton):
167    grok.order(1)
168    grok.context(IApplicant)
169    grok.view(ApplicantDisplayFormPage)
170    grok.require('waeup.manageApplication')
[7714]171    text = _('Manage application record')
[7438]172    target = 'manage'
173
174class ApplicantEditActionButton(ManageActionButton):
175    grok.order(2)
176    grok.context(IApplicant)
177    grok.view(ApplicantDisplayFormPage)
178    grok.require('waeup.handleApplication')
[7714]179    text = _('Edit application record')
[7438]180    target ='edit'
181
182    @property
183    def target_url(self):
184        """Get a URL to the target...
185        """
[8665]186        if self.context.locked or (
187            self.context.__parent__.expired and
188            self.context.__parent__.strict_deadline):
[7438]189            return
190        return self.view.url(self.view.context, self.target)
191
192class PDFActionButton(ManageActionButton):
193    grok.order(3)
194    grok.context(IApplicant)
195    grok.require('waeup.viewApplication')
196    icon = 'actionicon_pdf.png'
[7714]197    text = _('Download application slip')
[7438]198    target = 'application_slip.pdf'
199
[8666]200    @property
201    def target_url(self):
202        """Get a URL to the target...
203        """
[9051]204        if self.context.state in ('initialized', 'started', 'paid'):
[8666]205            return
206        return self.view.url(self.view.context, self.target)
207
[7438]208class StudentCreateActionButton(ManageActionButton):
209    grok.order(4)
210    grok.context(IApplicant)
211    grok.require('waeup.manageApplication')
212    icon = 'actionicon_entrance.png'
[7714]213    text = _('Create student record')
[7438]214    target ='createstudent'
215
216    @property
217    def target_url(self):
218        """Get a URL to the target...
219        """
[8666]220        if self.context.state != 'admitted':
[7438]221            return
222        return self.view.url(self.view.context, self.target)
223
224class PaymentReceiptActionButton(ManageActionButton):
[9070]225    grok.order(9) # This button should always be the last one.
[7438]226    grok.context(IApplicantOnlinePayment)
227    grok.view(OnlinePaymentDisplayFormPage)
228    grok.require('waeup.viewApplication')
229    icon = 'actionicon_pdf.png'
[8262]230    text = _('Download payment slip')
231    target = 'payment_slip.pdf'
[7438]232
233    @property
234    def target_url(self):
[8262]235        #if self.context.p_state != 'paid':
236        #    return ''
[7438]237        return self.view.url(self.view.context, self.target)
238
[8420]239class ApprovePaymentActionButton(ManageActionButton):
[9070]240    grok.order(8)
[7438]241    grok.context(IApplicantOnlinePayment)
242    grok.view(OnlinePaymentDisplayFormPage)
[8420]243    grok.require('waeup.managePortal')
[8435]244    icon = 'actionicon_accept.png'
[8420]245    text = _('Approve payment')
246    target = 'approve'
[7438]247
248    @property
249    def target_url(self):
[8243]250        if self.context.p_state == 'paid':
[7438]251            return ''
[7811]252        return self.view.url(self.view.context, self.target)
Note: See TracBrowser for help on using the repository browser.