[11976] | 1 | ## $Id: viewlets.py 17402 2023-05-04 21:40:25Z henrik $ |
---|
[7191] | 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 | ## |
---|
[6642] | 18 | import grok |
---|
[7097] | 19 | from zope.component import getUtility |
---|
[13935] | 20 | from zope.i18n import translate |
---|
[6642] | 21 | from zope.interface import Interface |
---|
[13935] | 22 | from waeup.kofa.browser.layout import default_primary_nav_template |
---|
[7811] | 23 | from waeup.kofa.browser.viewlets import ( |
---|
[7591] | 24 | PrimaryNavTab, ManageActionButton, AddActionButton) |
---|
[13935] | 25 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
| 26 | from waeup.kofa.interfaces import IExtFileStore, IKofaObject |
---|
[7811] | 27 | from waeup.kofa.students.browser import ( |
---|
[13935] | 28 | StudentsContainerPage, StudentsContainerManagePage, |
---|
| 29 | StudentBaseDisplayFormPage, StudentClearanceDisplayFormPage, |
---|
| 30 | StudentPersonalDisplayFormPage, StudyCourseDisplayFormPage, |
---|
| 31 | StudyLevelDisplayFormPage, CourseTicketDisplayFormPage, |
---|
| 32 | OnlinePaymentDisplayFormPage, BedTicketDisplayFormPage, |
---|
[9517] | 33 | StudentClearanceEditFormPage, StudentPersonalEditFormPage, |
---|
[15422] | 34 | PaymentsManageFormPage, StudyCourseTranscriptPage) |
---|
[7811] | 35 | from waeup.kofa.students.interfaces import ( |
---|
[13935] | 36 | IStudentsContainer, IStudent, IStudentStudyCourse, IStudentStudyLevel, |
---|
| 37 | ICourseTicket, IStudentOnlinePayment, IBedTicket, |
---|
[15163] | 38 | IStudentPaymentsContainer, IStudentsUtils, |
---|
[7591] | 39 | ) |
---|
[13935] | 40 | from waeup.kofa.students.workflow import ( |
---|
| 41 | ADMITTED, PAID, REQUESTED, CLEARED, REGISTERED, VALIDATED, GRADUATED, |
---|
[15163] | 42 | TRANSREQ, TRANSVAL, TRANSREL) |
---|
[6642] | 43 | |
---|
[13935] | 44 | |
---|
| 45 | grok.context(IKofaObject) # Make IKofaObject the default context |
---|
[6687] | 46 | grok.templatedir('browser_templates') |
---|
[6642] | 47 | |
---|
[7123] | 48 | |
---|
[6687] | 49 | class StudentManageSidebar(grok.ViewletManager): |
---|
| 50 | grok.name('left_studentmanage') |
---|
[6642] | 51 | |
---|
[13935] | 52 | |
---|
[6687] | 53 | class StudentManageLink(grok.Viewlet): |
---|
[6660] | 54 | """A link displayed in the student box which shows up for StudentNavigation |
---|
[6642] | 55 | objects. |
---|
| 56 | |
---|
| 57 | """ |
---|
| 58 | grok.baseclass() |
---|
[6687] | 59 | grok.viewletmanager(StudentManageSidebar) |
---|
[7819] | 60 | grok.context(IKofaObject) |
---|
[6642] | 61 | grok.view(Interface) |
---|
| 62 | grok.order(5) |
---|
[6660] | 63 | grok.require('waeup.viewStudent') |
---|
[6642] | 64 | |
---|
| 65 | link = 'index' |
---|
[7738] | 66 | text = _(u'Base Data') |
---|
[6642] | 67 | |
---|
| 68 | def render(self): |
---|
[8736] | 69 | url = self.view.url(self.context.student, self.link) |
---|
[7833] | 70 | # Here we know that the cookie has been set |
---|
| 71 | lang = self.request.cookies.get('kofa.language') |
---|
[13935] | 72 | text = translate( |
---|
| 73 | self.text, 'waeup.kofa', target_language=lang) |
---|
[10802] | 74 | if not self.link: |
---|
| 75 | return '' |
---|
[7459] | 76 | return u'<li><a href="%s">%s</a></li>' % ( |
---|
[13935] | 77 | url, text) |
---|
[6642] | 78 | |
---|
[13935] | 79 | |
---|
[7459] | 80 | class StudentManageApplicationLink(StudentManageLink): |
---|
[6687] | 81 | grok.order(1) |
---|
[7351] | 82 | link = 'application_slip' |
---|
[7738] | 83 | text = _(u'Application Slip') |
---|
[7340] | 84 | |
---|
| 85 | def render(self): |
---|
[7351] | 86 | slip = getUtility(IExtFileStore).getFileByContext( |
---|
[8736] | 87 | self.context.student, attr=self.link) |
---|
[7351] | 88 | if slip: |
---|
[10805] | 89 | lang = self.request.cookies.get('kofa.language') |
---|
[13935] | 90 | text = translate( |
---|
| 91 | self.text, 'waeup.kofa', target_language=lang) |
---|
| 92 | url = self.view.url(self.context.student, self.link) |
---|
[7459] | 93 | return u'<li><a href="%s">%s</a></li>' % ( |
---|
[13935] | 94 | url, text) |
---|
[7340] | 95 | return '' |
---|
| 96 | |
---|
[7459] | 97 | class StudentManageBaseLink(StudentManageLink): |
---|
| 98 | grok.order(2) |
---|
| 99 | link = 'index' |
---|
[7738] | 100 | text = _(u'Base Data') |
---|
[7459] | 101 | |
---|
[13935] | 102 | |
---|
[6687] | 103 | class StudentManageClearanceLink(StudentManageLink): |
---|
[7340] | 104 | grok.order(3) |
---|
[10802] | 105 | grok.name('studentmanageclearancelink') |
---|
[6687] | 106 | link = 'view_clearance' |
---|
[7738] | 107 | text = _(u'Clearance Data') |
---|
[6687] | 108 | |
---|
[13935] | 109 | |
---|
[6687] | 110 | class StudentManagePersonalLink(StudentManageLink): |
---|
[7340] | 111 | grok.order(4) |
---|
[10802] | 112 | grok.name('studentmanagepersonallink') |
---|
[6687] | 113 | link = 'view_personal' |
---|
[7738] | 114 | text = _(u'Personal Data') |
---|
[6687] | 115 | |
---|
[13935] | 116 | |
---|
[6687] | 117 | class StudentManageStudyCourseLink(StudentManageLink): |
---|
[7340] | 118 | grok.order(5) |
---|
[6687] | 119 | link = 'studycourse' |
---|
[7738] | 120 | text = _(u'Study Course') |
---|
[6687] | 121 | |
---|
[13935] | 122 | |
---|
[6687] | 123 | class StudentManagePaymentsLink(StudentManageLink): |
---|
[7340] | 124 | grok.order(6) |
---|
[10080] | 125 | grok.require('waeup.viewStudent') |
---|
[6687] | 126 | link = 'payments' |
---|
[7738] | 127 | text = _(u'Payments') |
---|
[6687] | 128 | |
---|
[13935] | 129 | |
---|
[6687] | 130 | class StudentManageAccommodationLink(StudentManageLink): |
---|
[7340] | 131 | grok.order(7) |
---|
[10803] | 132 | grok.name('studentmanageaccommodationlink') |
---|
[15972] | 133 | grok.require('waeup.viewStudent') |
---|
[6687] | 134 | link = 'accommodation' |
---|
[7738] | 135 | text = _(u'Accommodation') |
---|
[6687] | 136 | |
---|
[13935] | 137 | |
---|
[6687] | 138 | class StudentManageHistoryLink(StudentManageLink): |
---|
[7340] | 139 | grok.order(8) |
---|
[6687] | 140 | link = 'history' |
---|
[7738] | 141 | text = _(u'History') |
---|
[6687] | 142 | |
---|
[7591] | 143 | |
---|
[15163] | 144 | class StudentManageTranscriptLink(StudentManageLink): |
---|
| 145 | grok.order(9) |
---|
| 146 | link = 'final_transcript' |
---|
| 147 | text = _(u'Final Transcript') |
---|
| 148 | |
---|
| 149 | def render(self): |
---|
| 150 | slip = getUtility(IExtFileStore).getFileByContext( |
---|
| 151 | self.context.student, attr=self.link) |
---|
| 152 | if slip: |
---|
| 153 | lang = self.request.cookies.get('kofa.language') |
---|
| 154 | text = translate( |
---|
| 155 | self.text, 'waeup.kofa', target_language=lang) |
---|
| 156 | url = self.view.url(self.context.student, self.link) |
---|
| 157 | return u'<li><a href="%s">%s</a></li>' % ( |
---|
| 158 | url, text) |
---|
| 159 | return '' |
---|
| 160 | |
---|
| 161 | |
---|
[7591] | 162 | class StudentsContainerManageActionButton(ManageActionButton): |
---|
| 163 | grok.order(1) |
---|
| 164 | grok.context(IStudentsContainer) |
---|
| 165 | grok.view(StudentsContainerPage) |
---|
| 166 | grok.require('waeup.manageStudent') |
---|
[13076] | 167 | text = _('Manage students section') |
---|
[7591] | 168 | |
---|
[13935] | 169 | |
---|
[7591] | 170 | class StudentsContainerAddActionButton(AddActionButton): |
---|
| 171 | grok.order(1) |
---|
| 172 | grok.context(IStudentsContainer) |
---|
| 173 | grok.view(StudentsContainerManagePage) |
---|
| 174 | grok.require('waeup.manageStudent') |
---|
[7738] | 175 | text = _('Add student') |
---|
[7591] | 176 | target = 'addstudent' |
---|
| 177 | |
---|
[13935] | 178 | |
---|
[7591] | 179 | class ContactActionButton(ManageActionButton): |
---|
[9191] | 180 | grok.order(5) |
---|
[7591] | 181 | grok.context(IStudent) |
---|
| 182 | grok.view(StudentBaseDisplayFormPage) |
---|
[16523] | 183 | grok.require('waeup.viewStudent') |
---|
[7591] | 184 | icon = 'actionicon_mail.png' |
---|
[7738] | 185 | text = _('Send email') |
---|
[7591] | 186 | target = 'contactstudent' |
---|
| 187 | |
---|
[13935] | 188 | |
---|
[7591] | 189 | class StudentBaseManageActionButton(ManageActionButton): |
---|
| 190 | grok.order(1) |
---|
| 191 | grok.context(IStudent) |
---|
| 192 | grok.view(StudentBaseDisplayFormPage) |
---|
| 193 | grok.require('waeup.manageStudent') |
---|
[7738] | 194 | text = _('Manage') |
---|
[7591] | 195 | target = 'manage_base' |
---|
| 196 | |
---|
[13935] | 197 | |
---|
[9273] | 198 | class StudentTrigTransActionButton(ManageActionButton): |
---|
| 199 | grok.order(2) |
---|
| 200 | grok.context(IStudent) |
---|
| 201 | grok.view(StudentBaseDisplayFormPage) |
---|
| 202 | grok.require('waeup.triggerTransition') |
---|
| 203 | icon = 'actionicon_trigtrans.png' |
---|
| 204 | text = _(u'Trigger transition') |
---|
| 205 | target = 'trigtrans' |
---|
| 206 | |
---|
[13935] | 207 | |
---|
[9338] | 208 | class StudentLoginAsActionButton(ManageActionButton): |
---|
| 209 | grok.order(3) |
---|
| 210 | grok.context(IStudent) |
---|
| 211 | grok.view(StudentBaseDisplayFormPage) |
---|
| 212 | grok.require('waeup.loginAsStudent') |
---|
| 213 | icon = 'actionicon_mask.png' |
---|
| 214 | text = _(u'Login as student') |
---|
| 215 | target = 'loginasstep1' |
---|
| 216 | |
---|
[13935] | 217 | |
---|
[9191] | 218 | class AdmissionSlipActionButton(ManageActionButton): |
---|
| 219 | grok.order(4) |
---|
| 220 | grok.context(IStudent) |
---|
| 221 | grok.view(StudentBaseDisplayFormPage) |
---|
| 222 | grok.require('waeup.viewStudent') |
---|
| 223 | icon = 'actionicon_pdf.png' |
---|
| 224 | text = _('Download admission letter') |
---|
| 225 | target = 'admission_slip.pdf' |
---|
| 226 | |
---|
[13935] | 227 | |
---|
[10694] | 228 | class StudentTransferButton(ManageActionButton): |
---|
[9191] | 229 | grok.order(6) |
---|
[9124] | 230 | grok.context(IStudent) |
---|
| 231 | grok.view(StudentBaseDisplayFormPage) |
---|
| 232 | grok.require('waeup.manageStudent') |
---|
[9138] | 233 | text = _('Transfer student') |
---|
| 234 | target = 'transfer' |
---|
| 235 | icon = 'actionicon_redo.png' |
---|
| 236 | |
---|
[13935] | 237 | |
---|
[9138] | 238 | class StudentDeactivateActionButton(ManageActionButton): |
---|
[9191] | 239 | grok.order(7) |
---|
[9138] | 240 | grok.context(IStudent) |
---|
| 241 | grok.view(StudentBaseDisplayFormPage) |
---|
| 242 | grok.require('waeup.manageStudent') |
---|
[9124] | 243 | text = _('Deactivate account') |
---|
| 244 | target = 'deactivate' |
---|
| 245 | icon = 'actionicon_traffic_lights_red.png' |
---|
| 246 | |
---|
| 247 | @property |
---|
| 248 | def target_url(self): |
---|
| 249 | if self.context.suspended: |
---|
| 250 | return '' |
---|
| 251 | return self.view.url(self.view.context, self.target) |
---|
| 252 | |
---|
[9145] | 253 | @property |
---|
| 254 | def onclick(self): |
---|
| 255 | return "return window.confirm(%s);" % _( |
---|
| 256 | "'A history message will be added. Are you sure?'") |
---|
| 257 | |
---|
[13935] | 258 | |
---|
[9124] | 259 | class StudentActivateActionButton(ManageActionButton): |
---|
[9191] | 260 | grok.order(7) |
---|
[9124] | 261 | grok.context(IStudent) |
---|
| 262 | grok.view(StudentBaseDisplayFormPage) |
---|
| 263 | grok.require('waeup.manageStudent') |
---|
| 264 | text = _('Activate account') |
---|
| 265 | target = 'activate' |
---|
| 266 | icon = 'actionicon_traffic_lights_green.png' |
---|
| 267 | |
---|
| 268 | @property |
---|
| 269 | def target_url(self): |
---|
| 270 | if not self.context.suspended: |
---|
| 271 | return '' |
---|
| 272 | return self.view.url(self.view.context, self.target) |
---|
| 273 | |
---|
[9145] | 274 | @property |
---|
| 275 | def onclick(self): |
---|
| 276 | return "return window.confirm(%s);" % _( |
---|
| 277 | "'A history message will be added. Are you sure?'") |
---|
| 278 | |
---|
[13935] | 279 | |
---|
[7591] | 280 | class StudentClearanceManageActionButton(ManageActionButton): |
---|
| 281 | grok.order(1) |
---|
| 282 | grok.context(IStudent) |
---|
| 283 | grok.view(StudentClearanceDisplayFormPage) |
---|
| 284 | grok.require('waeup.manageStudent') |
---|
[7738] | 285 | text = _('Manage') |
---|
[8119] | 286 | target = 'manage_clearance' |
---|
[7591] | 287 | |
---|
[13935] | 288 | |
---|
[7591] | 289 | class StudentClearActionButton(ManageActionButton): |
---|
| 290 | grok.order(2) |
---|
| 291 | grok.context(IStudent) |
---|
| 292 | grok.view(StudentClearanceDisplayFormPage) |
---|
| 293 | grok.require('waeup.clearStudent') |
---|
[7738] | 294 | text = _('Clear student') |
---|
[7591] | 295 | target = 'clear' |
---|
| 296 | icon = 'actionicon_accept.png' |
---|
| 297 | |
---|
| 298 | @property |
---|
| 299 | def target_url(self): |
---|
[13935] | 300 | cdm = getUtility( |
---|
| 301 | IStudentsUtils).clearance_disabled_message(self.context) |
---|
[11772] | 302 | if cdm: |
---|
[9814] | 303 | return '' |
---|
[7591] | 304 | if self.context.state != REQUESTED: |
---|
| 305 | return '' |
---|
| 306 | return self.view.url(self.view.context, self.target) |
---|
| 307 | |
---|
[16187] | 308 | class StudentTemporarilyClearActionButton(ManageActionButton): |
---|
| 309 | grok.order(3) |
---|
| 310 | grok.context(IStudent) |
---|
| 311 | grok.view(StudentClearanceDisplayFormPage) |
---|
| 312 | grok.require('waeup.clearStudent') |
---|
| 313 | text = _('Clear student temporarily') |
---|
| 314 | target = 'temp_clearance' |
---|
| 315 | icon = 'actionicon_accept.png' |
---|
[13935] | 316 | |
---|
[16187] | 317 | @property |
---|
| 318 | def target_url(self): |
---|
| 319 | cdm = getUtility( |
---|
| 320 | IStudentsUtils).clearance_disabled_message(self.context) |
---|
| 321 | if cdm: |
---|
| 322 | return '' |
---|
| 323 | if self.context.officer_comment \ |
---|
| 324 | and self.context.officer_comment.startswith('Temporarily cleared'): |
---|
| 325 | return '' |
---|
| 326 | if self.context.state != REQUESTED: |
---|
| 327 | return '' |
---|
| 328 | return self.view.url(self.view.context, self.target) |
---|
| 329 | |
---|
| 330 | |
---|
[7591] | 331 | class StudentRejectClearanceActionButton(ManageActionButton): |
---|
[16187] | 332 | grok.order(4) |
---|
[7591] | 333 | grok.context(IStudent) |
---|
| 334 | grok.view(StudentClearanceDisplayFormPage) |
---|
| 335 | grok.require('waeup.clearStudent') |
---|
[7738] | 336 | text = _('Reject clearance') |
---|
[7591] | 337 | target = 'reject_clearance' |
---|
| 338 | icon = 'actionicon_reject.png' |
---|
| 339 | |
---|
| 340 | @property |
---|
| 341 | def target_url(self): |
---|
[13935] | 342 | cdm = getUtility( |
---|
| 343 | IStudentsUtils).clearance_disabled_message(self.context) |
---|
[11772] | 344 | if cdm: |
---|
[9814] | 345 | return '' |
---|
[7591] | 346 | if self.context.state not in (REQUESTED, CLEARED): |
---|
| 347 | return '' |
---|
| 348 | return self.view.url(self.view.context, self.target) |
---|
| 349 | |
---|
[13935] | 350 | |
---|
[7591] | 351 | class ClearanceSlipActionButton(ManageActionButton): |
---|
[16187] | 352 | grok.order(5) |
---|
[7591] | 353 | grok.context(IStudent) |
---|
| 354 | grok.view(StudentClearanceDisplayFormPage) |
---|
| 355 | grok.require('waeup.viewStudent') |
---|
| 356 | icon = 'actionicon_pdf.png' |
---|
[7738] | 357 | text = _('Download clearance slip') |
---|
[9452] | 358 | target = 'clearance_slip.pdf' |
---|
[7591] | 359 | |
---|
[13935] | 360 | |
---|
[8119] | 361 | class ClearanceViewActionButton(ManageActionButton): |
---|
| 362 | grok.order(1) |
---|
| 363 | grok.context(IStudent) |
---|
| 364 | grok.view(StudentClearanceEditFormPage) |
---|
| 365 | grok.require('waeup.viewStudent') |
---|
| 366 | icon = 'actionicon_view.png' |
---|
| 367 | text = _('View') |
---|
| 368 | target = 'view_clearance' |
---|
| 369 | |
---|
[13935] | 370 | |
---|
[8119] | 371 | class PersonalViewActionButton(ManageActionButton): |
---|
| 372 | grok.order(1) |
---|
| 373 | grok.context(IStudent) |
---|
| 374 | grok.view(StudentPersonalEditFormPage) |
---|
| 375 | grok.require('waeup.viewStudent') |
---|
| 376 | icon = 'actionicon_view.png' |
---|
| 377 | text = _('View') |
---|
| 378 | target = 'view_personal' |
---|
| 379 | |
---|
[13935] | 380 | |
---|
[8903] | 381 | class StudentPersonalManageActionButton(ManageActionButton): |
---|
[7591] | 382 | grok.order(1) |
---|
| 383 | grok.context(IStudent) |
---|
| 384 | grok.view(StudentPersonalDisplayFormPage) |
---|
[8903] | 385 | grok.require('waeup.manageStudent') |
---|
| 386 | text = _('Manage') |
---|
| 387 | target = 'manage_personal' |
---|
| 388 | |
---|
[13935] | 389 | |
---|
[8903] | 390 | class StudentPersonalEditActionButton(ManageActionButton): |
---|
| 391 | grok.order(2) |
---|
| 392 | grok.context(IStudent) |
---|
| 393 | grok.view(StudentPersonalDisplayFormPage) |
---|
| 394 | grok.require('waeup.handleStudent') |
---|
[7738] | 395 | text = _('Edit') |
---|
[7591] | 396 | target = 'edit_personal' |
---|
| 397 | |
---|
[13935] | 398 | |
---|
[7591] | 399 | class StudyCourseManageActionButton(ManageActionButton): |
---|
| 400 | grok.order(1) |
---|
| 401 | grok.context(IStudentStudyCourse) |
---|
| 402 | grok.view(StudyCourseDisplayFormPage) |
---|
| 403 | grok.require('waeup.manageStudent') |
---|
[7738] | 404 | text = _('Manage') |
---|
[7591] | 405 | target = 'manage' |
---|
| 406 | |
---|
[9138] | 407 | @property |
---|
| 408 | def target_url(self): |
---|
| 409 | if self.context.is_current: |
---|
| 410 | return self.view.url(self.view.context, self.target) |
---|
| 411 | return False |
---|
| 412 | |
---|
[13935] | 413 | |
---|
[10060] | 414 | class RevertTransferActionButton(ManageActionButton): |
---|
| 415 | grok.order(1) |
---|
| 416 | grok.context(IStudentStudyCourse) |
---|
| 417 | grok.view(StudyCourseDisplayFormPage) |
---|
| 418 | grok.require('waeup.manageStudent') |
---|
| 419 | icon = 'actionicon_undo.png' |
---|
| 420 | text = _('Reactivate this study course (revert previous transfer)') |
---|
| 421 | target = 'revert_transfer' |
---|
| 422 | |
---|
| 423 | @property |
---|
| 424 | def target_url(self): |
---|
| 425 | if self.context.is_previous: |
---|
| 426 | return self.view.url(self.view.context.__parent__, self.target) |
---|
| 427 | return False |
---|
| 428 | |
---|
[13935] | 429 | |
---|
[8078] | 430 | class StudyLevelManageActionButton(ManageActionButton): |
---|
[7591] | 431 | grok.order(1) |
---|
| 432 | grok.context(IStudentStudyLevel) |
---|
| 433 | grok.view(StudyLevelDisplayFormPage) |
---|
| 434 | grok.require('waeup.manageStudent') |
---|
[7738] | 435 | text = _('Manage') |
---|
[7591] | 436 | target = 'manage' |
---|
| 437 | |
---|
[9138] | 438 | @property |
---|
| 439 | def target_url(self): |
---|
| 440 | is_current = self.context.__parent__.is_current |
---|
| 441 | if not is_current: |
---|
| 442 | return '' |
---|
| 443 | return self.view.url(self.view.context, self.target) |
---|
| 444 | |
---|
[13935] | 445 | |
---|
[7591] | 446 | class StudentValidateCoursesActionButton(ManageActionButton): |
---|
| 447 | grok.order(3) |
---|
| 448 | grok.context(IStudentStudyLevel) |
---|
| 449 | grok.view(StudyLevelDisplayFormPage) |
---|
| 450 | grok.require('waeup.validateStudent') |
---|
[7738] | 451 | text = _('Validate courses') |
---|
[7591] | 452 | target = 'validate_courses' |
---|
| 453 | icon = 'actionicon_accept.png' |
---|
| 454 | |
---|
| 455 | @property |
---|
| 456 | def target_url(self): |
---|
[13935] | 457 | if not self.context.__parent__.is_current: |
---|
[7591] | 458 | return '' |
---|
[13935] | 459 | if self.context.student.state != REGISTERED: |
---|
| 460 | return '' |
---|
| 461 | if str(self.context.__parent__.current_level) != self.context.__name__: |
---|
| 462 | return '' |
---|
[7591] | 463 | return self.view.url(self.view.context, self.target) |
---|
| 464 | |
---|
[13935] | 465 | |
---|
[7591] | 466 | class StudentRejectCoursesActionButton(ManageActionButton): |
---|
| 467 | grok.order(4) |
---|
| 468 | grok.context(IStudentStudyLevel) |
---|
| 469 | grok.view(StudyLevelDisplayFormPage) |
---|
| 470 | grok.require('waeup.validateStudent') |
---|
[7738] | 471 | text = _('Reject courses') |
---|
[7591] | 472 | target = 'reject_courses' |
---|
| 473 | icon = 'actionicon_reject.png' |
---|
| 474 | |
---|
| 475 | @property |
---|
| 476 | def target_url(self): |
---|
[13935] | 477 | if not self.context.__parent__.is_current: |
---|
[7591] | 478 | return '' |
---|
[13935] | 479 | if self.context.student.state not in (VALIDATED, REGISTERED): |
---|
| 480 | return '' |
---|
| 481 | if str(self.context.__parent__.current_level) != self.context.__name__: |
---|
| 482 | return '' |
---|
[7591] | 483 | return self.view.url(self.view.context, self.target) |
---|
| 484 | |
---|
[13935] | 485 | |
---|
[13610] | 486 | class StudentUnregisterCoursesActionButton(ManageActionButton): |
---|
[8078] | 487 | grok.order(5) |
---|
| 488 | grok.context(IStudentStudyLevel) |
---|
| 489 | grok.view(StudyLevelDisplayFormPage) |
---|
[13610] | 490 | grok.require('waeup.handleStudent') |
---|
| 491 | text = _('Unregister courses') |
---|
| 492 | target = 'unregister_courses' |
---|
| 493 | icon = 'actionicon_reject.png' |
---|
| 494 | |
---|
| 495 | @property |
---|
[15820] | 496 | def onclick(self): |
---|
| 497 | return "return window.confirm(%s);" % _( |
---|
| 498 | "'You really want to unregister your course list?'") |
---|
| 499 | |
---|
| 500 | @property |
---|
[13610] | 501 | def target_url(self): |
---|
[13935] | 502 | if not self.context.__parent__.is_current: |
---|
[13610] | 503 | return '' |
---|
[13935] | 504 | if self.context.student.state != REGISTERED: |
---|
| 505 | return '' |
---|
| 506 | if str(self.context.__parent__.current_level) != self.context.__name__: |
---|
| 507 | return '' |
---|
[13610] | 508 | return self.view.url(self.view.context, self.target) |
---|
| 509 | |
---|
[13935] | 510 | |
---|
[13610] | 511 | class CourseRegistrationSlipActionButton(ManageActionButton): |
---|
| 512 | grok.order(6) |
---|
| 513 | grok.context(IStudentStudyLevel) |
---|
| 514 | grok.view(StudyLevelDisplayFormPage) |
---|
[8078] | 515 | grok.require('waeup.viewStudent') |
---|
| 516 | icon = 'actionicon_pdf.png' |
---|
| 517 | text = _('Download course registration slip') |
---|
[9452] | 518 | target = 'course_registration_slip.pdf' |
---|
[8078] | 519 | |
---|
[9138] | 520 | @property |
---|
| 521 | def target_url(self): |
---|
| 522 | is_current = self.context.__parent__.is_current |
---|
| 523 | if not is_current: |
---|
| 524 | return '' |
---|
| 525 | return self.view.url(self.view.context, self.target) |
---|
| 526 | |
---|
[13935] | 527 | |
---|
[7591] | 528 | class CourseTicketManageActionButton(ManageActionButton): |
---|
| 529 | grok.order(1) |
---|
| 530 | grok.context(ICourseTicket) |
---|
| 531 | grok.view(CourseTicketDisplayFormPage) |
---|
| 532 | grok.require('waeup.manageStudent') |
---|
[7738] | 533 | text = _('Manage') |
---|
[7591] | 534 | target = 'manage' |
---|
| 535 | |
---|
| 536 | |
---|
| 537 | class PaymentReceiptActionButton(ManageActionButton): |
---|
[13935] | 538 | grok.order(9) # This button should always be the last one. |
---|
[7591] | 539 | grok.context(IStudentOnlinePayment) |
---|
| 540 | grok.view(OnlinePaymentDisplayFormPage) |
---|
| 541 | grok.require('waeup.viewStudent') |
---|
| 542 | icon = 'actionicon_pdf.png' |
---|
[8262] | 543 | text = _('Download payment slip') |
---|
| 544 | target = 'payment_slip.pdf' |
---|
[7591] | 545 | |
---|
| 546 | @property |
---|
| 547 | def target_url(self): |
---|
[8262] | 548 | #if self.context.p_state != 'paid': |
---|
| 549 | # return '' |
---|
[7591] | 550 | return self.view.url(self.view.context, self.target) |
---|
| 551 | |
---|
[13935] | 552 | |
---|
[8420] | 553 | class ApprovePaymentActionButton(ManageActionButton): |
---|
[17217] | 554 | grok.order(20) |
---|
[7591] | 555 | grok.context(IStudentOnlinePayment) |
---|
| 556 | grok.view(OnlinePaymentDisplayFormPage) |
---|
[8420] | 557 | grok.require('waeup.managePortal') |
---|
[8435] | 558 | icon = 'actionicon_accept.png' |
---|
[8420] | 559 | text = _('Approve payment') |
---|
| 560 | target = 'approve' |
---|
[7591] | 561 | |
---|
| 562 | @property |
---|
| 563 | def target_url(self): |
---|
[15843] | 564 | if self.context.p_state in ('paid', 'waived', 'scholarship'): |
---|
[7591] | 565 | return '' |
---|
| 566 | return self.view.url(self.view.context, self.target) |
---|
| 567 | |
---|
[13935] | 568 | |
---|
[7591] | 569 | class BedTicketSlipActionButton(ManageActionButton): |
---|
| 570 | grok.order(1) |
---|
| 571 | grok.context(IBedTicket) |
---|
| 572 | grok.view(BedTicketDisplayFormPage) |
---|
[15972] | 573 | grok.require('waeup.viewStudent') |
---|
[7591] | 574 | icon = 'actionicon_pdf.png' |
---|
[7738] | 575 | text = _('Download bed allocation slip') |
---|
[9452] | 576 | target = 'bed_allocation_slip.pdf' |
---|
[7591] | 577 | |
---|
[13935] | 578 | |
---|
[7591] | 579 | class RelocateStudentActionButton(ManageActionButton): |
---|
| 580 | grok.order(2) |
---|
| 581 | grok.context(IBedTicket) |
---|
| 582 | grok.view(BedTicketDisplayFormPage) |
---|
| 583 | grok.require('waeup.manageHostels') |
---|
| 584 | icon = 'actionicon_reload.png' |
---|
[7738] | 585 | text = _('Relocate student') |
---|
[7591] | 586 | target = 'relocate' |
---|
| 587 | |
---|
[13935] | 588 | |
---|
[7591] | 589 | class StudentBaseActionButton(ManageActionButton): |
---|
| 590 | grok.order(1) |
---|
| 591 | grok.context(IStudent) |
---|
| 592 | grok.view(StudentBaseDisplayFormPage) |
---|
| 593 | grok.require('waeup.handleStudent') |
---|
[7876] | 594 | text = _('Edit') |
---|
[7591] | 595 | target = 'edit_base' |
---|
| 596 | |
---|
[13935] | 597 | |
---|
[7591] | 598 | class StudentPasswordActionButton(ManageActionButton): |
---|
| 599 | grok.order(2) |
---|
| 600 | grok.context(IStudent) |
---|
| 601 | grok.view(StudentBaseDisplayFormPage) |
---|
| 602 | grok.require('waeup.handleStudent') |
---|
| 603 | icon = 'actionicon_key.png' |
---|
[7738] | 604 | text = _('Change password') |
---|
[7591] | 605 | target = 'change_password' |
---|
| 606 | |
---|
[13935] | 607 | |
---|
[7591] | 608 | class StudentPassportActionButton(ManageActionButton): |
---|
| 609 | grok.order(3) |
---|
| 610 | grok.context(IStudent) |
---|
| 611 | grok.view(StudentBaseDisplayFormPage) |
---|
| 612 | grok.require('waeup.handleStudent') |
---|
| 613 | icon = 'actionicon_portrait.png' |
---|
[7738] | 614 | text = _('Change portrait') |
---|
[7591] | 615 | target = 'change_portrait' |
---|
| 616 | |
---|
| 617 | @property |
---|
| 618 | def target_url(self): |
---|
[16671] | 619 | if not getUtility(IStudentsUtils).allowPortraitChange(self.context): |
---|
[7591] | 620 | return '' |
---|
| 621 | return self.view.url(self.view.context, self.target) |
---|
| 622 | |
---|
[16609] | 623 | class StudentSignatureActionButton(ManageActionButton): |
---|
| 624 | grok.order(4) |
---|
| 625 | grok.context(IStudent) |
---|
| 626 | grok.view(StudentBaseDisplayFormPage) |
---|
| 627 | grok.require('waeup.handleStudent') |
---|
| 628 | icon = 'actionicon_signature.png' |
---|
[16610] | 629 | text = _('Upload signature') |
---|
[16609] | 630 | target = 'change_signature' |
---|
[13935] | 631 | |
---|
[16609] | 632 | @property |
---|
| 633 | def target_url(self): |
---|
| 634 | SIGNATURE_CHANGE_STATES = getUtility( |
---|
| 635 | IStudentsUtils).SIGNATURE_CHANGE_STATES |
---|
| 636 | if self.context.state not in SIGNATURE_CHANGE_STATES: |
---|
| 637 | return '' |
---|
| 638 | return self.view.url(self.view.context, self.target) |
---|
| 639 | |
---|
| 640 | |
---|
[7591] | 641 | class StudentClearanceStartActionButton(ManageActionButton): |
---|
| 642 | grok.order(1) |
---|
| 643 | grok.context(IStudent) |
---|
| 644 | grok.view(StudentClearanceDisplayFormPage) |
---|
| 645 | grok.require('waeup.handleStudent') |
---|
| 646 | icon = 'actionicon_start.gif' |
---|
[7738] | 647 | text = _('Start clearance') |
---|
[7591] | 648 | target = 'start_clearance' |
---|
| 649 | |
---|
| 650 | @property |
---|
| 651 | def target_url(self): |
---|
[7671] | 652 | if self.context.state != ADMITTED: |
---|
[7591] | 653 | return '' |
---|
| 654 | return self.view.url(self.view.context, self.target) |
---|
| 655 | |
---|
[13935] | 656 | |
---|
[7591] | 657 | class StudentClearanceEditActionButton(ManageActionButton): |
---|
| 658 | grok.order(1) |
---|
| 659 | grok.context(IStudent) |
---|
| 660 | grok.view(StudentClearanceDisplayFormPage) |
---|
| 661 | grok.require('waeup.handleStudent') |
---|
[7738] | 662 | text = _('Edit') |
---|
[7591] | 663 | target = 'cedit' |
---|
| 664 | |
---|
| 665 | @property |
---|
| 666 | def target_url(self): |
---|
| 667 | if self.context.clearance_locked: |
---|
| 668 | return '' |
---|
| 669 | return self.view.url(self.view.context, self.target) |
---|
| 670 | |
---|
[13935] | 671 | |
---|
[8476] | 672 | class StartSessionActionButton(ManageActionButton): |
---|
[7591] | 673 | grok.order(1) |
---|
| 674 | grok.context(IStudentStudyCourse) |
---|
| 675 | grok.view(StudyCourseDisplayFormPage) |
---|
| 676 | grok.require('waeup.handleStudent') |
---|
| 677 | icon = 'actionicon_start.gif' |
---|
[8920] | 678 | text = _('Start new session') |
---|
[8471] | 679 | target = 'start_session' |
---|
[7591] | 680 | |
---|
| 681 | @property |
---|
| 682 | def target_url(self): |
---|
[9138] | 683 | if self.context.next_session_allowed and self.context.is_current: |
---|
[8471] | 684 | return self.view.url(self.view.context, self.target) |
---|
| 685 | return False |
---|
[7591] | 686 | |
---|
[13935] | 687 | |
---|
[7591] | 688 | class AddStudyLevelActionButton(AddActionButton): |
---|
| 689 | grok.order(1) |
---|
| 690 | grok.context(IStudentStudyCourse) |
---|
| 691 | grok.view(StudyCourseDisplayFormPage) |
---|
| 692 | grok.require('waeup.handleStudent') |
---|
[7738] | 693 | text = _('Add course list') |
---|
[7591] | 694 | target = 'add' |
---|
| 695 | |
---|
| 696 | @property |
---|
| 697 | def target_url(self): |
---|
[8736] | 698 | student = self.view.context.student |
---|
[7671] | 699 | condition1 = student.state != PAID |
---|
[7591] | 700 | condition2 = str(student['studycourse'].current_level) in \ |
---|
| 701 | self.view.context.keys() |
---|
[9138] | 702 | condition3 = not self.context.is_current |
---|
| 703 | if condition1 or condition2 or condition3: |
---|
[7591] | 704 | return '' |
---|
| 705 | return self.view.url(self.view.context, self.target) |
---|
| 706 | |
---|
[13935] | 707 | |
---|
[7591] | 708 | class StudyLevelEditActionButton(ManageActionButton): |
---|
[8078] | 709 | grok.order(2) |
---|
[7591] | 710 | grok.context(IStudentStudyLevel) |
---|
| 711 | grok.view(StudyLevelDisplayFormPage) |
---|
[9924] | 712 | grok.require('waeup.editStudyLevel') |
---|
[8920] | 713 | text = _('Edit course list') |
---|
[7591] | 714 | target = 'edit' |
---|
| 715 | |
---|
| 716 | @property |
---|
| 717 | def target_url(self): |
---|
[8736] | 718 | student = self.view.context.student |
---|
[9257] | 719 | condition1 = student.state == PAID |
---|
| 720 | condition2 = self.view.context.is_current_level |
---|
[9138] | 721 | is_current = self.context.__parent__.is_current |
---|
[9257] | 722 | if condition1 and condition2 and is_current: |
---|
| 723 | return self.view.url(self.view.context, self.target) |
---|
| 724 | return '' |
---|
[7591] | 725 | |
---|
[13935] | 726 | |
---|
[9517] | 727 | class AddPaymentActionButton(AddActionButton): |
---|
| 728 | grok.order(1) |
---|
| 729 | grok.context(IStudentPaymentsContainer) |
---|
| 730 | grok.view(PaymentsManageFormPage) |
---|
| 731 | grok.require('waeup.payStudent') |
---|
| 732 | text = _('Add current session payment ticket') |
---|
| 733 | target = 'addop' |
---|
| 734 | |
---|
[13935] | 735 | |
---|
[9517] | 736 | class AddPreviousPaymentActionButton(AddActionButton): |
---|
| 737 | grok.order(2) |
---|
| 738 | grok.context(IStudentPaymentsContainer) |
---|
| 739 | grok.view(PaymentsManageFormPage) |
---|
| 740 | grok.require('waeup.payStudent') |
---|
[10811] | 741 | grok.name('addpreviouspaymentactionbutton') |
---|
[9517] | 742 | text = _('Add previous session payment ticket') |
---|
| 743 | target = 'addpp' |
---|
| 744 | |
---|
| 745 | @property |
---|
| 746 | def target_url(self): |
---|
| 747 | student = self.view.context.student |
---|
[10811] | 748 | if student.before_payment or not self.target: |
---|
[9517] | 749 | return '' |
---|
| 750 | return self.view.url(self.view.context, self.target) |
---|
| 751 | |
---|
[13935] | 752 | |
---|
[9865] | 753 | class AddBalancePaymentActionButton(AddActionButton): |
---|
| 754 | grok.order(3) |
---|
| 755 | grok.context(IStudentPaymentsContainer) |
---|
| 756 | grok.view(PaymentsManageFormPage) |
---|
[9938] | 757 | grok.require('waeup.manageStudent') |
---|
[10810] | 758 | grok.name('addbalancepaymentactionbutton') |
---|
[9865] | 759 | text = _('Add balance payment ticket') |
---|
| 760 | target = 'addbp' |
---|
| 761 | |
---|
| 762 | @property |
---|
| 763 | def target_url(self): |
---|
[10810] | 764 | if not self.target: |
---|
| 765 | return '' |
---|
[9865] | 766 | return self.view.url(self.view.context, self.target) |
---|
| 767 | |
---|
[13935] | 768 | |
---|
[15163] | 769 | class StudyCourseTranscriptActionButton(ManageActionButton): |
---|
| 770 | grok.order(2) |
---|
| 771 | grok.name('transcript') |
---|
| 772 | grok.context(IStudentStudyCourse) |
---|
| 773 | grok.view(StudyCourseDisplayFormPage) |
---|
| 774 | grok.require('waeup.viewTranscript') |
---|
| 775 | text = _('Transcript') |
---|
| 776 | target = 'transcript' |
---|
| 777 | icon = 'actionicon_transcript.png' |
---|
| 778 | |
---|
| 779 | @property |
---|
| 780 | def target_url(self): |
---|
| 781 | final_slip = getUtility(IExtFileStore).getFileByContext( |
---|
| 782 | self.context.student, attr='final_transcript') |
---|
| 783 | if self.context.student.transcript_enabled and not final_slip: |
---|
| 784 | return self.view.url(self.view.context, self.target) |
---|
| 785 | return False |
---|
| 786 | |
---|
| 787 | |
---|
[10458] | 788 | class RequestTranscriptActionButton(ManageActionButton): |
---|
| 789 | grok.order(8) |
---|
| 790 | grok.context(IStudent) |
---|
| 791 | grok.view(StudentBaseDisplayFormPage) |
---|
| 792 | grok.require('waeup.handleStudent') |
---|
| 793 | text = _('Request transcript') |
---|
| 794 | target = 'request_transcript' |
---|
| 795 | icon = 'actionicon_transcript.png' |
---|
| 796 | |
---|
| 797 | @property |
---|
| 798 | def target_url(self): |
---|
| 799 | if self.context.state != GRADUATED: |
---|
| 800 | return '' |
---|
| 801 | return self.view.url(self.view.context, self.target) |
---|
| 802 | |
---|
[16120] | 803 | class TORequestTranscriptActionButton(RequestTranscriptActionButton): |
---|
| 804 | grok.require('waeup.processTranscript') |
---|
| 805 | text = _('Request transcript for student') |
---|
| 806 | target = 'request_transcript_for_student' |
---|
[13935] | 807 | |
---|
[16120] | 808 | |
---|
[15163] | 809 | class ValidateTranscriptActionButton(ManageActionButton): |
---|
| 810 | grok.order(8) |
---|
| 811 | grok.context(IStudentStudyCourse) |
---|
| 812 | grok.view(StudyCourseTranscriptPage) |
---|
| 813 | grok.require('waeup.processTranscript') |
---|
| 814 | text = _('Validate transcript') |
---|
| 815 | target = 'validate_transcript' |
---|
| 816 | icon = 'actionicon_transcript.png' |
---|
| 817 | |
---|
| 818 | @property |
---|
| 819 | def target_url(self): |
---|
| 820 | if self.context.student.state != TRANSREQ: |
---|
| 821 | return '' |
---|
| 822 | return self.view.url(self.view.context, self.target) |
---|
| 823 | |
---|
| 824 | |
---|
| 825 | class ReleaseTranscriptActionButton(ManageActionButton): |
---|
| 826 | grok.order(8) |
---|
| 827 | grok.context(IStudentStudyCourse) |
---|
| 828 | grok.view(StudyCourseTranscriptPage) |
---|
| 829 | grok.require('waeup.processTranscript') |
---|
| 830 | text = _('Release transcript') |
---|
| 831 | target = 'release_transcript' |
---|
| 832 | icon = 'actionicon_transcript.png' |
---|
| 833 | |
---|
| 834 | @property |
---|
| 835 | def target_url(self): |
---|
| 836 | if self.context.student.state != TRANSVAL: |
---|
| 837 | return '' |
---|
| 838 | return self.view.url(self.view.context, self.target) |
---|
| 839 | |
---|
| 840 | |
---|
| 841 | class TranscriptSlipActionButton(ManageActionButton): |
---|
| 842 | grok.order(1) |
---|
| 843 | grok.name('transcript_slip') |
---|
| 844 | grok.context(IStudentStudyCourse) |
---|
| 845 | grok.view(StudyCourseTranscriptPage) |
---|
[16170] | 846 | grok.require('waeup.downloadTranscript') |
---|
[15163] | 847 | text = _('Academic Transcript') |
---|
| 848 | target = 'transcript.pdf' |
---|
| 849 | icon = 'actionicon_pdf.png' |
---|
| 850 | |
---|
| 851 | @property |
---|
| 852 | def target_url(self): |
---|
| 853 | final_slip = getUtility(IExtFileStore).getFileByContext( |
---|
| 854 | self.context.student, attr='final_transcript') |
---|
| 855 | if self.context.student.transcript_enabled \ |
---|
| 856 | and not final_slip: |
---|
| 857 | return self.view.url(self.view.context, self.target) |
---|
| 858 | return False |
---|
| 859 | |
---|
| 860 | |
---|
| 861 | class SignTranscriptActionButton(ManageActionButton): |
---|
| 862 | grok.order(2) |
---|
| 863 | grok.context(IStudentStudyCourse) |
---|
| 864 | grok.view(StudyCourseTranscriptPage) |
---|
| 865 | grok.require('waeup.signTranscript') |
---|
| 866 | text = _('Sign transcript electronically') |
---|
| 867 | target = 'sign_transcript' |
---|
[10458] | 868 | icon = 'actionicon_transcript.png' |
---|
| 869 | |
---|
| 870 | @property |
---|
| 871 | def target_url(self): |
---|
[15163] | 872 | if self.context.student.state != TRANSVAL: |
---|
[10458] | 873 | return '' |
---|
| 874 | return self.view.url(self.view.context, self.target) |
---|
| 875 | |
---|
[15163] | 876 | @property |
---|
| 877 | def onclick(self): |
---|
| 878 | return "return window.confirm(%s);" % _( |
---|
| 879 | "'Signing a transcript electronically cannot be revoked. " |
---|
| 880 | "The electronic signature replaces your handwritten signature.\\n\\n" |
---|
| 881 | "You really want to sign the transcript?'") |
---|
[13935] | 882 | |
---|
[15163] | 883 | |
---|
[7184] | 884 | class StudentsTab(PrimaryNavTab): |
---|
| 885 | """Students tab in primary navigation. |
---|
| 886 | """ |
---|
[7819] | 887 | grok.context(IKofaObject) |
---|
[7184] | 888 | grok.order(4) |
---|
[12843] | 889 | grok.require('waeup.viewStudentsContainer') |
---|
[10771] | 890 | grok.name('studentstab') |
---|
[7184] | 891 | |
---|
| 892 | pnav = 4 |
---|
[7674] | 893 | tab_title = _(u'Students') |
---|
[7184] | 894 | |
---|
| 895 | @property |
---|
| 896 | def link_target(self): |
---|
| 897 | return self.view.application_url('students') |
---|
| 898 | |
---|
[13935] | 899 | |
---|
[6687] | 900 | class PrimaryStudentNavManager(grok.ViewletManager): |
---|
| 901 | """Viewlet manager for the primary navigation tab. |
---|
| 902 | """ |
---|
| 903 | grok.name('primary_nav_student') |
---|
| 904 | |
---|
[13935] | 905 | |
---|
[6687] | 906 | class PrimaryStudentNavTab(grok.Viewlet): |
---|
| 907 | """Base for primary student nav tabs. |
---|
| 908 | """ |
---|
| 909 | grok.baseclass() |
---|
[10816] | 910 | grok.context(IKofaObject) |
---|
[6687] | 911 | grok.viewletmanager(PrimaryStudentNavManager) |
---|
[7243] | 912 | template = default_primary_nav_template |
---|
[6687] | 913 | grok.order(1) |
---|
[7184] | 914 | grok.require('waeup.Authenticated') |
---|
[8467] | 915 | pnav = 0 |
---|
[6687] | 916 | tab_title = u'Some Text' |
---|
| 917 | |
---|
| 918 | @property |
---|
| 919 | def link_target(self): |
---|
| 920 | return self.view.application_url() |
---|
| 921 | |
---|
| 922 | @property |
---|
| 923 | def active(self): |
---|
| 924 | view_pnav = getattr(self.view, 'pnav', 0) |
---|
| 925 | if view_pnav == self.pnav: |
---|
| 926 | return 'active' |
---|
| 927 | return '' |
---|
| 928 | |
---|
[13935] | 929 | |
---|
[7240] | 930 | class MyStudentDataTab(PrimaryStudentNavTab): |
---|
[7459] | 931 | """MyData dropdown tab in primary navigation. |
---|
[6687] | 932 | """ |
---|
| 933 | grok.order(3) |
---|
[7240] | 934 | grok.require('waeup.viewMyStudentDataTab') |
---|
[7459] | 935 | grok.template('mydatadropdowntabs') |
---|
[10816] | 936 | grok.name('mystudentdatatab') |
---|
[6687] | 937 | pnav = 4 |
---|
[7738] | 938 | tab_title = _(u'My Data') |
---|
[6687] | 939 | |
---|
| 940 | @property |
---|
[7459] | 941 | def active(self): |
---|
| 942 | view_pnav = getattr(self.view, 'pnav', 0) |
---|
| 943 | if view_pnav == self.pnav: |
---|
| 944 | return 'active dropdown' |
---|
| 945 | return 'dropdown' |
---|
[7097] | 946 | |
---|
[7459] | 947 | @property |
---|
| 948 | def targets(self): |
---|
[9180] | 949 | student = grok.getSite()['students'][self.request.principal.id] |
---|
| 950 | student_url = self.view.url(student) |
---|
[9178] | 951 | app_slip = getUtility(IExtFileStore).getFileByContext( |
---|
[9180] | 952 | student, 'application_slip') |
---|
[7459] | 953 | targets = [] |
---|
[15606] | 954 | if student.getParentsPassword(): |
---|
| 955 | targets += [ |
---|
| 956 | {'url': student_url, 'title': 'Base Data'}, |
---|
| 957 | {'url': student_url + '/studycourse', 'title': _('Study Course')}, |
---|
| 958 | {'url': student_url + '/payments', 'title': _('Payments')}, |
---|
| 959 | ] |
---|
| 960 | return targets |
---|
[9178] | 961 | if app_slip: |
---|
[13935] | 962 | targets = [{'url': student_url + '/application_slip', |
---|
| 963 | 'title': _('Application Slip')}, ] |
---|
[7459] | 964 | targets += [ |
---|
[13935] | 965 | {'url': student_url, 'title': 'Base Data'}, |
---|
| 966 | {'url': student_url + '/view_clearance', |
---|
| 967 | 'title': _('Clearance Data')}, |
---|
| 968 | {'url': student_url + '/view_personal', |
---|
| 969 | 'title': _('Personal Data')}, |
---|
| 970 | {'url': student_url + '/studycourse', 'title': _('Study Course')}, |
---|
| 971 | {'url': student_url + '/payments', 'title': _('Payments')}, |
---|
| 972 | {'url': student_url + '/accommodation', |
---|
| 973 | 'title': _('Accommodation Data')}, |
---|
| 974 | {'url': student_url + '/history', 'title': _('History')}, |
---|
[7459] | 975 | ] |
---|
| 976 | return targets |
---|