Last change
on this file since 628 was
622,
checked in by joachim, 18 years ago
|
added base files for accommodation-module,
renamed Accommodation to AccoHall?
accommodation to acco_hall
one can now add and view an accommodation-hall
|
File size:
937 bytes
|
Rev | Line | |
---|
[622] | 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 | if pm.isAnonymousUser(): |
---|
| 20 | return redirect("%s/academics_contents" % context.absolute_url()) |
---|
| 21 | |
---|
| 22 | campus = context.portal_catalog(meta_type = "University")[-1].getObject() |
---|
| 23 | |
---|
| 24 | if context.isManager(): |
---|
| 25 | if context.portal_type == 'AccoFolder': |
---|
| 26 | return context.accommodation.accommodation_view() |
---|
| 27 | elif context.portal_type == 'AccoHall': |
---|
| 28 | return context.acco_hall_view() |
---|
| 29 | return redirect("%s/academics_contents" % context.absolute_url()) |
---|
| 30 | else: |
---|
| 31 | return redirect("%s/academics_contents" % context.absolute_url()) |
---|
| 32 | |
---|
Note: See
TracBrowser for help on using the repository browser.