Last change
on this file since 1091 was
1031,
checked in by joachim, 18 years ago
|
reconstruct students_index
|
-
Property svn:keywords set to
Id
|
File size:
904 bytes
|
Line | |
---|
1 | ## Script (Python) "students_index" |
---|
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 | ## |
---|
10 | # $Id: students_index.py 1031 2006-12-11 18:32:06Z joachim $ |
---|
11 | """ |
---|
12 | return the current students_index_html |
---|
13 | """ |
---|
14 | |
---|
15 | request = context.REQUEST |
---|
16 | redirect = request.RESPONSE.redirect |
---|
17 | mtool = context.portal_membership |
---|
18 | member = mtool.getAuthenticatedMember() |
---|
19 | |
---|
20 | if mtool.isAnonymousUser(): |
---|
21 | return redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
22 | |
---|
23 | students_url = "%s/campus/students" % (context.portal_url.getPortalPath()) |
---|
24 | |
---|
25 | if "ClearanceOfficers" in member.getGroups(): |
---|
26 | return redirect("%s/search_students" % students_url) |
---|
27 | if context.isSectionOfficer(): |
---|
28 | return redirect("%s/search_students" % students_url) |
---|
29 | if context.isStudent(): |
---|
30 | info = context.getStudentInfo() |
---|
31 | student = info['student'] |
---|
32 | return redirect("%s/student_view" % student.absolute_url()) |
---|
Note: See
TracBrowser for help on using the repository browser.