source: WAeUP_SRP/trunk/skins/waeup_accommodation/acco_hall_view.pt @ 686

Last change on this file since 686 was 659, checked in by Henrik Bettermann, 18 years ago

some fixes and minor modifications for the launching of the accommodation module

File size: 1.6 KB
Line 
1<metal:html tal:define="info context/getAccoHallInfo;
2            is_manager info/is_manager|nothing;"
3            >
4  <metal:body use-macro="here/waeup_content_master/macros/master">
5    <metal:block fill-slot="header">
6      <a href=""
7         tal:attributes="href string:${here/academicsParent}">
8        <img tal:attributes="src string:${here/portal_url}/arrow_up.gif"/>
9        Up one level
10      </a>
11      <h3 tal:content="here/title_or_id" />
12      <div tal:condition="nothing" tal:content="info/container_path"/>
13
14    </metal:block>
15    <metal:main fill-slot="main">
16      <span tal:omit-tag="" 
17            tal:content="structure python: info['doc'].render(layout_mode='view')" />
18      <br />
19      <table tal:condition="info/bed_types"
20             tal:define="bed_types info/bed_types">
21        <tr>
22          <th width="200px">Bed Type</th>
23          <th width="80px">Total</th>
24          <th width="80px">Booked</th>
25        </tr>
26        <tr tal:repeat="bt bed_types">
27          <td tal:content="bt/name" />
28          <td tal:content="bt/total" />
29          <td tal:content="bt/reserved" />
30        </tr>
31        <tr><td>&nbsp;</td></tr>
32      </table>
33      <br />
34      <table tal:condition="info/reserved"
35             tal:define="reserved info/reserved">
36        <tr>
37          <th width="200px">Student</th>
38          <th>Bed</th>
39        </tr>
40        <tr tal:repeat="bt reserved">
41          <td tal:content="bt/student" />
42          <td tal:content="bt/bed" />
43        </tr>
44      </table>
45
46    </metal:main>
47   
48    <metal:sub fill-slot="sub"/>
49  </metal:body>
50</metal:html>
Note: See TracBrowser for help on using the repository browser.