Last change
on this file since 17650 was
15972,
checked in by Henrik Bettermann, 5 years ago
|
Add AccommodationDisplayFormPage
|
File size:
934 bytes
|
Line | |
---|
1 | <tal:choice condition="python: view.desired_hostel and view.with_hostel_selection"> |
---|
2 | <p> |
---|
3 | <strong i18n:translate="">Favoured Hostel:</strong> |
---|
4 | <span tal:replace="view/desired_hostel"></span> |
---|
5 | </p> |
---|
6 | </tal:choice> |
---|
7 | |
---|
8 | <h3 i18n:domain="waeup.kofa" i18n:translate="">Bookings</h3> |
---|
9 | <br /> |
---|
10 | |
---|
11 | <table class="kofa-data-table dataTable"> |
---|
12 | <thead> |
---|
13 | <tr> |
---|
14 | <th i18n:translate="">Session</th> |
---|
15 | <th i18n:translate="">Booking Date</th> |
---|
16 | <th i18n:translate="">Bed Coordinates</th> |
---|
17 | <th i18n:translate="">Bed Type</th> |
---|
18 | </tr> |
---|
19 | </thead> |
---|
20 | <tbody> |
---|
21 | <tr tal:repeat="cl context/values"> |
---|
22 | <td> <a tal:attributes="href python: view.url(cl)"> |
---|
23 | <span tal:content="python: cl.getSessionString()">PID</span></a></td> |
---|
24 | <td tal:content="python: layout.formatDatetime(cl.booking_date)">DATE</td> |
---|
25 | <td tal:content="cl/display_coordinates">COORDINATES</td> |
---|
26 | <td tal:content="cl/bed_type">TYPE</td> |
---|
27 | </tr> |
---|
28 | </tbody> |
---|
29 | </table> |
---|
Note: See
TracBrowser for help on using the repository browser.