Changeset 2425
- Timestamp:
- 23 Oct 2007, 14:45:09 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/base/skins/waeup_accommodation/hall_allocation_list.py
r1273 r2425 38 38 lines.append(','.join(fields)) 39 39 format = '"%(' + ')s","%('.join(fields) + ')s"' 40 reserved = pa(hall=context.getId()) 41 for bed in reserved: 40 hall=context.getId() 41 booked = pa(hall=hall) 42 for bed in booked: 42 43 if bed.student == '': 43 44 continue … … 46 47 continue 47 48 d = context.getFormattedStudentEntry(erg[0]) 48 hall ,block,room,bed = bed.bed.split('_')49 hall_dummy,block,room,bed = bed.bed.split('_') 49 50 d['hall'] = hall 50 51 d['block'] = block
Note: See TracChangeset for help on using the changeset viewer.