Last change
on this file since 819 was
816,
checked in by joachim, 19 years ago
|
pin is now not used if jamb_no is invalid
reserve_accommodation had permission set to false instead of View
students_index got an error, when called from student in enter_clearance_pin
|
-
Property svn:keywords set to
Id
|
File size:
811 bytes
|
Rev | Line | |
---|
[542] | 1 | ## Script (Python) "students_indext" |
---|
[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 816 2006-11-09 17:33:49Z joachim $ |
---|
[535] | 11 | """ |
---|
[542] | 12 | return the current students_index_html |
---|
[535] | 13 | """ |
---|
| 14 | |
---|
| 15 | request = context.REQUEST |
---|
| 16 | redirect = request.RESPONSE.redirect |
---|
| 17 | pm = context.portal_membership |
---|
[542] | 18 | |
---|
[535] | 19 | if pm.isAnonymousUser(): |
---|
[681] | 20 | return redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
[542] | 21 | |
---|
[816] | 22 | campus_url = "%s/campus" % (context.portal_url.getPortalPath()) |
---|
| 23 | #campus = context.portal_catalog(meta_type = "University")[-1].getObject() |
---|
[542] | 24 | |
---|
[603] | 25 | if context.isManager(): |
---|
[816] | 26 | return redirect("%s/searchStudents" % campus_url) |
---|
[603] | 27 | if context.isStudent(): |
---|
[542] | 28 | info = context.getStudentInfo() |
---|
| 29 | student = info['student'] |
---|
[655] | 30 | return redirect("%s/student_view" % student.absolute_url()) |
---|
| 31 | |
---|
Note: See
TracBrowser for help on using the repository browser.