Last change
on this file since 6646 was
6642,
checked in by Henrik Bettermann, 13 years ago
|
Add viewlet manager 'StudentSitebar?' which is rendered in a block above the LeftSidebar? viewlet manager block. This viewlet manager replaces the plain action buttons recently implemented.
|
-
Property svn:keywords set to
Id
|
File size:
1.5 KB
|
Rev | Line | |
---|
[6642] | 1 | import grok |
---|
| 2 | from zope.interface import Interface |
---|
| 3 | from waeup.sirp.interfaces import IWAeUPObject |
---|
| 4 | |
---|
| 5 | grok.context(IWAeUPObject) # Make IWAeUPObject the default context |
---|
| 6 | |
---|
| 7 | class StudentSidebar(grok.ViewletManager): |
---|
| 8 | grok.name('left_student') |
---|
| 9 | |
---|
| 10 | class StudentLink(grok.Viewlet): |
---|
| 11 | """A link displayed in the student box which shows for StudentNavigation |
---|
| 12 | objects. |
---|
| 13 | |
---|
| 14 | """ |
---|
| 15 | grok.baseclass() |
---|
| 16 | grok.viewletmanager(StudentSidebar) |
---|
| 17 | grok.context(IWAeUPObject) |
---|
| 18 | grok.view(Interface) |
---|
| 19 | grok.order(5) |
---|
| 20 | grok.require('waeup.viewStudents') |
---|
| 21 | |
---|
| 22 | link = 'index' |
---|
| 23 | text = u'Base Data' |
---|
| 24 | |
---|
| 25 | def render(self): |
---|
| 26 | url = self.view.url(self.context.getStudent(), self.link) |
---|
| 27 | return u'<div class="portlet"><a href="%s">%s</a></div>' % ( |
---|
| 28 | url, self.text) |
---|
| 29 | |
---|
| 30 | class StudentBaseLink(StudentLink): |
---|
| 31 | grok.order(1) |
---|
| 32 | link = 'index' |
---|
| 33 | text = u'Base Data' |
---|
| 34 | |
---|
| 35 | class StudentClearanceLink(StudentLink): |
---|
| 36 | grok.order(2) |
---|
| 37 | link = 'view_clearance' |
---|
| 38 | text = u'Clearance Data' |
---|
| 39 | |
---|
| 40 | class StudentPersonalLink(StudentLink): |
---|
| 41 | grok.order(2) |
---|
| 42 | link = 'view_personal' |
---|
| 43 | text = u'Personal Data' |
---|
| 44 | |
---|
| 45 | class StudentStudyCourseLink(StudentLink): |
---|
| 46 | grok.order(3) |
---|
| 47 | link = 'studycourse' |
---|
| 48 | text = u'Study Course' |
---|
| 49 | |
---|
| 50 | class StudentPaymentsLink(StudentLink): |
---|
| 51 | grok.order(4) |
---|
| 52 | link = 'payments' |
---|
| 53 | text = u'Payments' |
---|
| 54 | |
---|
| 55 | class StudentAccommodationLink(StudentLink): |
---|
| 56 | grok.order(5) |
---|
| 57 | link = 'accommodation' |
---|
| 58 | text = u'Accommodation Data' |
---|
| 59 | |
---|
| 60 | class StudentHistoryLink(StudentLink): |
---|
| 61 | grok.order(6) |
---|
| 62 | link = 'history' |
---|
| 63 | text = u'History' |
---|
Note: See
TracBrowser for help on using the repository browser.