Last change
on this file since 17946 was
4301,
checked in by Henrik Bettermann, 15 years ago
|
fix
|
-
Property svn:keywords set to
Id
|
File size:
1.0 KB
|
Rev | Line | |
---|
[1031] | 1 | ## Script (Python) "students_index" |
---|
[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 4301 2009-06-17 06:14:44Z henrik $ |
---|
[535] | 11 | """ |
---|
[1785] | 12 | return the current students_index |
---|
[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 | |
---|
[1163] | 23 | students_url = "%s/campus/students" % (context.portal_url()) |
---|
[542] | 24 | |
---|
[1557] | 25 | if "ClearanceOfficers" in member.getGroups() or\ |
---|
[2304] | 26 | "StudentsReaders" in member.getGroups() or\ |
---|
[1557] | 27 | "CourseAdvisers" in member.getGroups(): |
---|
[1574] | 28 | return redirect("%s/campus/students/search_students" % context.portal_url()) |
---|
[937] | 29 | if context.isSectionOfficer(): |
---|
[1574] | 30 | return redirect("%s/campus/students/search_students" % context.portal_url()) |
---|
[603] | 31 | if context.isStudent(): |
---|
[1163] | 32 | id = str(member) |
---|
| 33 | return redirect("%s/%s/student_view" % (students_url, id)) |
---|
[2304] | 34 | |
---|
[2030] | 35 | return redirect("%s/srp_invalid_access" % context.portal_url()) |
---|
Note: See
TracBrowser for help on using the repository browser.