Last change
on this file since 11102 was
1596,
checked in by joachim, 18 years ago
|
merged changes from trunk to joachim-event-branch
|
-
Property svn:keywords set to
Id
|
File size:
938 bytes
|
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 1596 2007-03-19 21:45:44Z 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 | |
---|
[1163] | 23 | students_url = "%s/campus/students" % (context.portal_url()) |
---|
[542] | 24 | |
---|
[1558] | 25 | if "ClearanceOfficers" in member.getGroups() or\ |
---|
| 26 | "CourseAdvisers" in member.getGroups(): |
---|
[1596] | 27 | return redirect("%s/campus/students/search_students" % context.portal_url()) |
---|
[937] | 28 | if context.isSectionOfficer(): |
---|
[1596] | 29 | return redirect("%s/campus/students/search_students" % context.portal_url()) |
---|
[603] | 30 | if context.isStudent(): |
---|
[1163] | 31 | id = str(member) |
---|
| 32 | return redirect("%s/%s/student_view" % (students_url, id)) |
---|
Note: See
TracBrowser for help on using the repository browser.