Last change
on this file since 1161 was
999,
checked in by joachim, 18 years ago
|
edit app_ac_pin if not set (logged_in.py)
set default to all states (search students)
|
-
Property svn:keywords set to
Id
|
File size:
1.1 KB
|
Rev | Line | |
---|
[891] | 1 | ## Script (Python) "student_index" |
---|
[544] | 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: student_index.py 999 2006-12-06 10:46:32Z joachim $ |
---|
[544] | 11 | """ |
---|
| 12 | return the current student_index_html |
---|
| 13 | """ |
---|
| 14 | |
---|
| 15 | request = context.REQUEST |
---|
| 16 | redirect = request.RESPONSE.redirect |
---|
| 17 | pm = context.portal_membership |
---|
[999] | 18 | member = pm.getAuthenticatedMember() |
---|
[544] | 19 | |
---|
[903] | 20 | if context.isStaff(): |
---|
[723] | 21 | if context.portal_type == 'StudentStudyCourse': |
---|
| 22 | return context.study_course_view() |
---|
| 23 | elif context.portal_type == 'StudentStudyLevel': |
---|
| 24 | return context.study_level_view() |
---|
[839] | 25 | elif context.portal_type == 'StudentClearance': |
---|
[894] | 26 | return context.clearance_view() |
---|
[839] | 27 | elif context.portal_type == 'Student': |
---|
[999] | 28 | return redirect("%s/student_view" % context.absolute_url()) |
---|
[839] | 29 | return redirect("%s/waeup_document_view" % context.absolute_url()) |
---|
[603] | 30 | if context.isStudent(): |
---|
[999] | 31 | students = context.portal_url.getPortalObject().campus.students |
---|
| 32 | student = getattr(students,str(member)) |
---|
[742] | 33 | return redirect("%s/student_view" % student.absolute_url()) |
---|
[903] | 34 | |
---|
| 35 | return redirect("%s/srp_anonymous_view" % context.absolute_url()) |
---|
| 36 | |
---|
Note: See
TracBrowser for help on using the repository browser.