Changeset 124 for waeup_product/trunk/skins/waeup_student
- Timestamp:
- 29 Oct 2005, 10:45:10 (19 years ago)
- Location:
- waeup_product/trunk/skins/waeup_student
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup_product/trunk/skins/waeup_student/admission_status_form.pt
r69 r124 14 14 </metal:block> 15 15 <metal:block fill-slot="main"> 16 < center><h1>Admission Status!</h1></center>16 <h1>List admitted students!</h1> 17 17 <p> 18 18 You may be seeing a long list of names or just the name of the person of your interest below. -
waeup_product/trunk/skins/waeup_student/book_accommodation.py
r118 r124 34 34 elif psm == 'valid': 35 35 sf = context.getContent() 36 halls = getattr(context,' Accommodation').contentValues()36 halls = getattr(context,'accommodation').contentValues() 37 37 beds = [] 38 38 student = context.PERSONAL.getContent() … … 43 43 bal = getattr(h,'beds_assigned_list',[]) 44 44 nr_of_beds = int(h.nr_of_blocks) * int(h.nr_of_floors) * int(h.rooms_per_floor) * int(h.beds_per_room) 45 if h.which_sex == student.sex and nr_of_beds > len(bal): 45 if h.which_sex == student.sex and nr_of_beds > len(bal): 46 46 break 47 47 dict = {'heading': h.heading, -
waeup_product/trunk/skins/waeup_student/booked_accommodation.pt
r114 r124 7 7 tal:define="acco options/v" 8 8 > 9 you have successfully booked bed nr <span tal:content="acco/beds_assigned" /> in <span tal:content="acco/heading" /> 10 of <span tal:content="acco/nr_of_free" /> now <span tal:content="acco/beds_assigned" /> assigned. 9 You have successfully booked bed nr <span tal:content="acco/beds_assigned" /> in <span tal:content="acco/heading" />. 11 10 </metal:block> 12 11 <metal:block fill-slot="sub"> -
waeup_product/trunk/skins/waeup_student/check_admission_form.pt
r48 r124 15 15 16 16 <metal:block fill-slot="main"> 17 <h1> check your admission to the UniDemo!</h1>17 <h1>Check your admission status!</h1> 18 18 <div tal:replace="structure rendered_main" /> 19 19 </metal:block>
Note: See TracChangeset for help on using the changeset viewer.