source: WAeUP_SRP/trunk/skins/waeup_accommodation/formatBed.py @ 686

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

accommodation reservation works again, reverted layout_waeup_edit to old version

File size: 475 bytes
Line 
1##parameters=bed=None,mode=None,datastructure=None
2# $Id: apply_admission.py 543 2006-09-24 07:44:32Z henrik $
3"""
4format the bed for readability
5"""
6
7if datastructure is not None:
8    bed = datastructure.get('bed')
9if not bed:
10    return ''
11hall,block,room,letter = bed.split('_')
12res = context.portal_catalog(portal_type="AccoHall",id=hall)
13if res and len(res) == 1:
14    hall_title = res[0].Title
15return " %s / Block %s / Room %s / Bed %s" % (hall_title,block,room,letter)
Note: See TracBrowser for help on using the repository browser.