Last change
on this file since 627 was
627,
checked in by joachim, 18 years ago
|
counting error corrected, cleartext bed_type names
|
File size:
1.0 KB
|
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 | """ |
---|
12 | return Info about the Faculties |
---|
13 | """ |
---|
14 | request = context.REQUEST |
---|
15 | |
---|
16 | wf = context.portal_workflow |
---|
17 | path_info = request.get('PATH_INFO').split('/') |
---|
18 | mtool = context.portal_membership |
---|
19 | pa = context.portal_accommodation |
---|
20 | info = {} |
---|
21 | #dep_id = request.get('PATH_TRANSLATED').split('/')[-2] |
---|
22 | dep_id = context.aq_parent.getId() |
---|
23 | info['is_manager'] = context.isManager() |
---|
24 | info['is_student'] = context.isStudent() |
---|
25 | info['action'] = "%s" % context.absolute_url() |
---|
26 | info['choosen_ids'] = request.get('ids',[]) |
---|
27 | info['doc'] = context.getContent() |
---|
28 | bed_types = pa.uniqueValuesFor('bed_type') |
---|
29 | bt_list = [] |
---|
30 | bt_names = context.getBedTypeNames() |
---|
31 | for bt in bed_types: |
---|
32 | res = pa(bed_type=bt,hall=context.getId()) |
---|
33 | bt_list.append({'name': bt_names[bt], 'count': len(res)}) |
---|
34 | info['bed_types'] = bt_list |
---|
35 | |
---|
36 | return info |
---|
Note: See
TracBrowser for help on using the repository browser.