Last change
on this file since 17947 was
828,
checked in by joachim, 18 years ago
|
reenabled waeup_tool,
reserve accommodation fixed
|
-
Property svn:keywords set to
Id
|
File size:
595 bytes
|
Line | |
---|
1 | ## Script (Python) "students_indext" |
---|
2 | ##bind container=container |
---|
3 | ##bind context=context |
---|
4 | ##bind namespace= |
---|
5 | ##bind script=script |
---|
6 | ##bind subpath=traverse_subpath |
---|
7 | ##parameters=bed=None,mode=None,datastructure=None |
---|
8 | ##title= |
---|
9 | # $Id: formatBed.py 828 2006-11-10 15:26:31Z joachim $ |
---|
10 | """ |
---|
11 | format the bed for readability |
---|
12 | """ |
---|
13 | |
---|
14 | if datastructure is not None: |
---|
15 | bed = datastructure.get('bed') |
---|
16 | if not bed: |
---|
17 | return '' |
---|
18 | hall,block,room,letter = bed.split('_') |
---|
19 | info = context.waeup_tool.getAccommodationInfo(bed) |
---|
20 | if info: |
---|
21 | hall_title = info['hall_title'] |
---|
22 | else: |
---|
23 | hall_title = "" |
---|
24 | return " %s / Block %s / Room %s / Bed %s" % (hall_title,block,room,letter) |
---|
Note: See
TracBrowser for help on using the repository browser.