Last change
on this file since 874 was
874,
checked in by joachim, 18 years ago
|
first draft of view for ClearanceOfficers?
steps to make it work:
- Create a group CLearanceOfficers
- delegate SectionReader? to this Group in students
- Put the supposed CO's in this Group
- modify the cpsskinstheme like so:
if context.isStaff():
return 'WAeUP_Backoffice'
return 'WAeUP_Student'
|
-
Property svn:keywords set to
Id
|
File size:
891 bytes
|
Rev | Line | |
---|
[542] | 1 | ## Script (Python) "students_indext" |
---|
[535] | 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
| 7 | ##parameters=batch=None |
---|
| 8 | ##title= |
---|
| 9 | ## |
---|
[805] | 10 | # $Id: students_index.py 874 2006-11-16 13:05:12Z joachim $ |
---|
[535] | 11 | """ |
---|
[542] | 12 | return the current students_index_html |
---|
[535] | 13 | """ |
---|
| 14 | |
---|
| 15 | request = context.REQUEST |
---|
| 16 | redirect = request.RESPONSE.redirect |
---|
[874] | 17 | mtool = context.portal_membership |
---|
| 18 | member = mtool.getAuthenticatedMember() |
---|
[542] | 19 | |
---|
[874] | 20 | if mtool.isAnonymousUser(): |
---|
[681] | 21 | return redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
[542] | 22 | |
---|
[827] | 23 | students_url = "%s/campus/students" % (context.portal_url.getPortalPath()) |
---|
[542] | 24 | |
---|
[874] | 25 | if "ClearanceOfficers" in member.getGroups(): |
---|
| 26 | return redirect("%s/co_search" % students_url) |
---|
[603] | 27 | if context.isManager(): |
---|
[827] | 28 | return redirect("%s/searchStudents" % students_url) |
---|
[603] | 29 | if context.isStudent(): |
---|
[542] | 30 | info = context.getStudentInfo() |
---|
| 31 | student = info['student'] |
---|
[655] | 32 | return redirect("%s/student_view" % student.absolute_url()) |
---|
Note: See
TracBrowser for help on using the repository browser.