Last change
on this file since 17936 was
1444,
checked in by joachim, 18 years ago
|
added release reserved bed function.
|
-
Property svn:keywords set to
Id
|
File size:
758 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: acco_folder_index.py 1444 2007-02-19 17:16:34Z joachim $ |
---|
11 | """ |
---|
12 | return the appropriate page in the accommodation section |
---|
13 | """ |
---|
14 | |
---|
15 | request = context.REQUEST |
---|
16 | redirect = request.RESPONSE.redirect |
---|
17 | pm = context.portal_membership |
---|
18 | |
---|
19 | #from Products.zdb import set_trace;set_trace() |
---|
20 | if context.isSectionOfficer(): |
---|
21 | if context.portal_type == 'AccoFolder': |
---|
22 | return context.accommodation.acco_folder_view() |
---|
23 | elif context.portal_type == 'AccoHall': |
---|
24 | return context.acco_hall_view() |
---|
25 | return redirect("%s/srp_view" % context.portal_url()) |
---|
26 | else: |
---|
27 | return redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
28 | |
---|
Note: See
TracBrowser for help on using the repository browser.