source: main/waeup.kofa/branches/uli-zc-async/src/waeup/kofa/hostels/browser_templates/containerpage.pt @ 9090

Last change on this file since 9090 was 8685, checked in by Henrik Bettermann, 12 years ago

Add hostel allocation start end end date attributes to hostels.

Move hostel allocation parameters from configuration to hostels. AccommodationOfficer? must be able to edit these parameters.

File size: 795 bytes
Line 
1<table class="form-table" i18n:domain="waeup.kofa">
2  <tbody>
3    <tal:block repeat="widget view/widgets">
4      <tr>
5        <td class="fieldname">
6          <span tal:content="widget/label">LABEL</span>:
7        </td>
8        <td>
9          <span tal:content="structure widget">
10            <input type="text" />
11          </span>
12        </td>
13      </tr>
14    </tal:block>
15  </tbody>
16</table>
17
18<table i18n:domain="waeup.kofa">
19  <thead>
20    <tr>
21      <th i18n:translate="">Id</th>
22      <th i18n:translate="">Name</th>
23    </tr>
24  </thead>
25  <tbody>
26    <tr tal:repeat="value context/values">
27      <td> <a tal:attributes="href value/__name__">
28          <span tal:content="value/hostel_id">ID</span></a></td>
29      <td tal:content="value/hostel_name">NAME</td>
30    </tr>
31  </tbody>
32</table>
Note: See TracBrowser for help on using the repository browser.