Last change
on this file since 686 was
681,
checked in by Henrik Bettermann, 18 years ago
|
academics_contents no longer used
|
File size:
833 bytes
|
Line | |
---|
1 | ## Script (Python) "academics_index" |
---|
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 appropriate page in the academics section |
---|
13 | """ |
---|
14 | |
---|
15 | request = context.REQUEST |
---|
16 | redirect = request.RESPONSE.redirect |
---|
17 | pm = context.portal_membership |
---|
18 | |
---|
19 | campus = context.portal_catalog(meta_type = "University")[-1].getObject() |
---|
20 | |
---|
21 | if context.isManager(): |
---|
22 | if context.portal_type == 'AccoFolder': |
---|
23 | return context.accommodation.acco_folder_view() |
---|
24 | elif context.portal_type == 'AccoHall': |
---|
25 | return context.acco_hall_view() |
---|
26 | return redirect("%s/srp_manager_view" % context.portal_url()) |
---|
27 | else: |
---|
28 | return redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
29 | |
---|
Note: See
TracBrowser for help on using the repository browser.