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

Last change on this file since 12886 was 11874, checked in by Henrik Bettermann, 10 years ago

Hide 'Create students' button. Only user admin can see this button.

  • Property svn:keywords set to Id
File size: 8.9 KB
Line 
1## $Id: viewlets.py 11874 2014-10-23 07:24:39Z 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.students.viewlets import PrimaryStudentNavTab
21from waeup.kofa.browser.viewlets import (
22    ManageActionButton, PrimaryNavTab, AddActionButton)
23from waeup.kofa.applicants.interfaces import (
24    IApplicant, IApplicantsRoot, IApplicantsContainer,
25    IApplicantOnlinePayment
26    )
27from waeup.kofa.applicants.browser import (
28    ApplicantsRootPage, ApplicantsContainerPage, ApplicantManageFormPage,
29    ApplicantDisplayFormPage, OnlinePaymentDisplayFormPage,
30    ApplicantsContainerManageFormPage, ApplicantsStatisticsPage
31    )
32
33from waeup.kofa.interfaces import MessageFactory as _
34
35grok.context(IKofaObject) # Make IKofaObject the default context
36grok.templatedir('browser_templates')
37
38class ApplicantsAuthTab(PrimaryNavTab):
39    """Applicants tab in primary navigation.
40    """
41    grok.context(IKofaObject)
42    grok.order(3)
43    grok.require('waeup.viewApplicantsTab')
44    pnav = 3
45    tab_title = _(u'Applicants')
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')
58    tab_title = _(u'Application')
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
74    tab_title = _(u'My Data')
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
85class ApplicantsRootSearchActionButton(ManageActionButton):
86    grok.order(1)
87    grok.context(IApplicantsRoot)
88    grok.view(ApplicantsRootPage)
89    grok.require('waeup.viewApplication')
90    text = _('Find applicants')
91    icon = 'actionicon_search.png'
92    target = '@@search'
93
94class ApplicantsRootManageActionButton(ManageActionButton):
95    grok.order(2)
96    grok.context(IApplicantsRoot)
97    grok.view(ApplicantsRootPage)
98    grok.require('waeup.manageApplication')
99    text = _('Manage application section')
100
101class ApplicantRegisterActionButton(ManageActionButton):
102    grok.order(1)
103    grok.context(IApplicantsContainer)
104    grok.view(ApplicantsContainerPage)
105    grok.require('waeup.Anonymous')
106    icon = 'actionicon_login.png'
107    text = _('Register for application')
108    target = 'register'
109
110class ApplicantsContainerAddActionButton(AddActionButton):
111    grok.order(1)
112    grok.context(IApplicantsContainer)
113    grok.view(ApplicantsContainerManageFormPage)
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)
122    grok.require('waeup.viewApplicationStatistics')
123    icon = 'actionicon_statistics.png'
124    text = _('Container statistics')
125    target = 'statistics'
126
127class ApplicantsContainerStatisticsActionButton2(
128        ApplicantsContainerStatisticsActionButton):
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
140class ExportApplicantsActionButton(ManageActionButton):
141    """ 'Export applicants' button for faculties.
142    """
143    grok.context(IApplicantsContainer)
144    grok.view(ApplicantsContainerPage)
145    grok.require('waeup.manageApplication')
146    icon = 'actionicon_down.png'
147    text = _('Export applicants')
148    target = 'exports'
149    grok.order(4)
150
151class ApplicantsRootCreateStudentsActionButton(ManageActionButton):
152    grok.order(3)
153    grok.context(IApplicantsRoot)
154    grok.view(ApplicantsRootPage)
155    grok.require('waeup.managePortal')
156    icon = 'actionicon_entrance.png'
157    text = _('Create students')
158    target ='createallstudents'
159
160    @property
161    def target_url(self):
162        if self.target and self.request.principal.id == 'admin':
163            return self.view.url(self.view.context, self.target)
164        return
165
166class ApplicantsContainerCreateStudentsActionButton(ManageActionButton):
167    grok.order(1)
168    grok.context(IApplicantsContainer)
169    grok.view(ApplicantsStatisticsPage)
170    grok.require('waeup.managePortal')
171    icon = 'actionicon_entrance.png'
172    text = _('Create students')
173    target ='createallstudents'
174
175    @property
176    def target_url(self):
177        if self.target and self.request.principal.id == 'admin':
178            return self.view.url(self.view.context, self.target)
179        return
180
181class ApplicantViewActionButton(ManageActionButton):
182    grok.context(IApplicant)
183    grok.view(ApplicantManageFormPage)
184    grok.require('waeup.viewApplication')
185    icon = 'actionicon_view.png'
186    text = _('View application record')
187    target = 'index'
188
189class ApplicantManageActionButton(ManageActionButton):
190    grok.order(1)
191    grok.context(IApplicant)
192    grok.view(ApplicantDisplayFormPage)
193    grok.require('waeup.manageApplication')
194    text = _('Manage application record')
195    target = 'manage'
196
197class ApplicantEditActionButton(ManageActionButton):
198    grok.order(2)
199    grok.context(IApplicant)
200    grok.view(ApplicantDisplayFormPage)
201    grok.require('waeup.handleApplication')
202    text = _('Edit application record')
203    target ='edit'
204
205    @property
206    def target_url(self):
207        """Get a URL to the target...
208        """
209        if self.context.locked or (
210            self.context.__parent__.expired and
211            self.context.__parent__.strict_deadline):
212            return
213        return self.view.url(self.view.context, self.target)
214
215class PDFActionButton(ManageActionButton):
216    grok.order(3)
217    grok.context(IApplicant)
218    grok.require('waeup.viewApplication')
219    grok.name('pdfactionbutton')
220    icon = 'actionicon_pdf.png'
221    text = _('Download application slip')
222    target = 'application_slip.pdf'
223
224    @property
225    def target_url(self):
226        """Get a URL to the target...
227        """
228        if self.context.state in ('initialized', 'started', 'paid') \
229            or self.context.special:
230            return
231        return self.view.url(self.view.context, self.target)
232
233class StudentCreateActionButton(ManageActionButton):
234    grok.order(4)
235    grok.context(IApplicant)
236    grok.require('waeup.manageApplication')
237    icon = 'actionicon_entrance.png'
238    text = _('Create student record')
239    target ='createstudent'
240
241    @property
242    def target_url(self):
243        """Get a URL to the target...
244        """
245        if self.context.state != 'admitted':
246            return
247        return self.view.url(self.view.context, self.target)
248
249class PaymentReceiptActionButton(ManageActionButton):
250    grok.order(9) # This button should always be the last one.
251    grok.context(IApplicantOnlinePayment)
252    grok.view(OnlinePaymentDisplayFormPage)
253    grok.require('waeup.viewApplication')
254    icon = 'actionicon_pdf.png'
255    text = _('Download payment slip')
256    target = 'payment_slip.pdf'
257
258    @property
259    def target_url(self):
260        #if self.context.p_state != 'paid':
261        #    return ''
262        return self.view.url(self.view.context, self.target)
263
264class ApprovePaymentActionButton(ManageActionButton):
265    grok.order(8)
266    grok.context(IApplicantOnlinePayment)
267    grok.view(OnlinePaymentDisplayFormPage)
268    grok.require('waeup.managePortal')
269    icon = 'actionicon_accept.png'
270    text = _('Approve payment')
271    target = 'approve'
272
273    @property
274    def target_url(self):
275        if self.context.p_state == 'paid':
276            return ''
277        return self.view.url(self.view.context, self.target)
Note: See TracBrowser for help on using the repository browser.