source: WAeUP_SRP/trunk/skins/waeup_accommodation/acco_folder_index.py @ 1173

Last change on this file since 1173 was 937, checked in by Henrik Bettermann, 18 years ago

setup SectionOfficer? role

  • Property svn:keywords set to Id
File size: 710 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 937 2006-11-25 09:00:34Z henrik $
11"""
12return the appropriate page in the accommodation section
13"""
14
15request = context.REQUEST
16redirect = request.RESPONSE.redirect
17pm = context.portal_membership
18
19if context.isSectionOfficer():
20    if context.portal_type == 'AccoFolder':
21        return context.accommodation.acco_folder_view()
22    elif context.portal_type == 'AccoHall':
23        return context.acco_hall_view()
24    return redirect("%s/srp_view" % context.portal_url())
25else:
26    return redirect("%s/srp_anonymous_view" % context.portal_url())
27
Note: See TracBrowser for help on using the repository browser.