source: main/waeup.sirp/trunk/src/waeup/sirp/hostels/browser_templates/containerpage.pt @ 7286

Last change on this file since 7286 was 6959, checked in by Henrik Bettermann, 13 years ago

Add pagetemplates and extend logging.

File size: 490 bytes
Line 
1<h2 tal:content="view/label">TITLE</h2>
2
3<div tal:condition="python: not len(context.keys())">
4There no subobjects registered yet.
5</div>
6
7<table class="zebra">
8  <thead>
9    <tr>
10      <th>Id</th>
11      <th>Name</th>
12    </tr>
13  </thead>
14  <tbody>
15    <tr tal:repeat="value context/values">
16      <td> <a tal:attributes="href value/__name__">
17          <span tal:content="value/hostel_id">Id</span></a></td>
18      <td tal:content="value/hostel_name">Name</td>
19    </tr>
20  </tbody>
21</table>
Note: See TracBrowser for help on using the repository browser.