Last change
on this file since 17952 was
1785,
checked in by Henrik Bettermann, 17 years ago
|
cleanup
|
-
Property svn:keywords set to
Id
|
File size:
933 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 1785 2007-05-15 09:47:19Z henrik $ |
---|
11 | """ |
---|
12 | return the current students_index |
---|
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()) |
---|
24 | |
---|
25 | if "ClearanceOfficers" in member.getGroups() or\ |
---|
26 | "CourseAdvisers" in member.getGroups(): |
---|
27 | return redirect("%s/campus/students/search_students" % context.portal_url()) |
---|
28 | if context.isSectionOfficer(): |
---|
29 | return redirect("%s/campus/students/search_students" % context.portal_url()) |
---|
30 | if context.isStudent(): |
---|
31 | id = str(member) |
---|
32 | return redirect("%s/%s/student_view" % (students_url, id)) |
---|
Note: See
TracBrowser for help on using the repository browser.