source: WAeUP_SRP/trunk/skins/waeup_academics/academics_index.py @ 811

Last change on this file since 811 was 805, checked in by joachim, 18 years ago

propset Id

  • Property svn:keywords set to Id
File size: 1.2 KB
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: academics_index.py 805 2006-11-09 09:38:29Z joachim $
11"""
12return the appropriate page in the academics section
13"""
14
15request = context.REQUEST
16redirect = request.RESPONSE.redirect
17pm = context.portal_membership
18
19if pm.isAnonymousUser():
20    return redirect("%s/srp_anonymous_view" % context.portal_url())
21else:
22    if context.portal_type == 'AcademicsFolder':
23        return context.academics.academics_view()
24    elif context.portal_type == 'Faculty':
25        return context.faculty_view()
26    elif context.portal_type == 'Department':
27        return context.department_view()
28    elif context.portal_type == 'CoursesFolder':
29        return context.courses_view()
30    elif context.portal_type == 'CertificatesFolder':
31        return context.certificates_view()
32    elif context.portal_type == 'Certificate':
33        return context.certificate_view()
34    elif context.portal_type == 'StudyLevel':
35        return context.level_view()
36    elif context.portal_type in ('CertificateCourse','Course'):
37        return context.waeup_document_view()
38    return redirect("%s/srp_manager_view" % context.portal_url())
39
Note: See TracBrowser for help on using the repository browser.