Last change
on this file since 834 was
832,
checked in by joachim, 18 years ago
|
add select boxes to clearance results
display final_submit button, if aknow checked
set clearance object to closed and
student to clearance_requested when final submit button is clicked
|
-
Property svn:keywords set to
Id
|
File size:
748 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 832 2006-11-10 16:52:23Z 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 | |
---|
[827] | 22 | students_url = "%s/campus/students" % (context.portal_url.getPortalPath()) |
---|
[542] | 23 | |
---|
[603] | 24 | if context.isManager(): |
---|
[827] | 25 | return redirect("%s/searchStudents" % students_url) |
---|
[603] | 26 | if context.isStudent(): |
---|
[542] | 27 | info = context.getStudentInfo() |
---|
| 28 | student = info['student'] |
---|
[655] | 29 | return redirect("%s/student_view" % student.absolute_url()) |
---|
Note: See
TracBrowser for help on using the repository browser.