source: WAeUP_SRP/trunk/skins/waeup_academics/getDocumentInfo.py @ 686

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

batch of fixes to open the frontend for the first time

File size: 535 bytes
Line 
1## Script (Python) "cpsdocument_edit"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=student=None
8##title=
9##
10# $Id: student_edit.py 486 2006-09-06 10:09:39Z joachim $
11"""
12return Info about the Faculties
13"""
14request = context.REQUEST
15
16wf = context.portal_workflow
17path_info = request.get('PATH_INFO').split('/')
18
19info = {}
20info['is_manager'] = context.isManager
21info['is_student'] = context.isStudent
22info['doc'] = context.getContent()
23return info
Note: See TracBrowser for help on using the repository browser.