Last change
on this file since 552 was
544,
checked in by Henrik Bettermann, 18 years ago
|
themes reorganized (part 1)
|
File size:
1.1 KB
|
Rev | Line | |
---|
[544] | 1 | ## Script (Python) "student_indext" |
---|
| 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 | ## |
---|
| 10 | # $Id: student_edit.py 486 2006-09-06 10:09:39Z joachim $ |
---|
| 11 | """ |
---|
| 12 | return the current student_index_html |
---|
| 13 | """ |
---|
| 14 | |
---|
| 15 | request = context.REQUEST |
---|
| 16 | redirect = request.RESPONSE.redirect |
---|
| 17 | pm = context.portal_membership |
---|
| 18 | |
---|
| 19 | |
---|
| 20 | if pm.isAnonymousUser(): |
---|
| 21 | return redirect("%s/srp_anonymous_view" % context.absolute_url()) |
---|
| 22 | |
---|
| 23 | |
---|
| 24 | member = pm.getAuthenticatedMember() |
---|
| 25 | roles = member.getRoles() |
---|
| 26 | isManager = "Manager" in roles or "SectionManager" in roles |
---|
| 27 | isStudent = "Student" in roles |
---|
| 28 | |
---|
| 29 | if isManager: |
---|
| 30 | return redirect("%s/academics_contents" % context.absolute_url()) |
---|
| 31 | if isStudent: |
---|
| 32 | info = context.getStudentInfo() |
---|
| 33 | student = info['student'] |
---|
| 34 | doc = info['app_doc'] |
---|
| 35 | state = context.getStudentInfo()['review_state'] |
---|
| 36 | if state == 'admission_applied': |
---|
| 37 | return redirect("%s/application_view" % student.absolute_url()) |
---|
| 38 | elif state == 'application_pin_entered': |
---|
| 39 | return redirect("%s/passport_entry_view" % student.absolute_url()) |
---|
Note: See
TracBrowser for help on using the repository browser.