source: main/waeup.kofa/trunk/src/waeup/kofa/hostels/browser_templates/containermanagepage.pt @ 7811

Last change on this file since 7811 was 7811, checked in by uli, 13 years ago

Rename all non-locales stuff from sirp to kofa.

File size: 890 bytes
Line 
1<form action="." tal:attributes="action request/URL"
2    i18n:domain="waeup.kofa"
3    method="POST" enctype="multipart/form-data">
4  <table>
5    <thead>
6      <tr>
7        <th>&nbsp;
8        </th>
9        <th i18n:translate="">Id
10        </th>
11        <th i18n:translate="">Name
12        </th>
13      </tr>
14    </thead>
15    <tbody>
16      <tr tal:repeat="hostel context/values"> <td>
17          <input type="checkbox" name="val_id" tal:attributes="value hostel/hostel_id" /> </td> <td>
18          <a tal:attributes="href python: view.url(hostel)" tal:content="hostel/__name__"> ID</a> </td> <td>
19          <span tal:content="hostel/hostel_name">ID
20          </span> </td>
21      </tr>
22    </tbody>
23  </table>
24  <div tal:condition="view/availableActions">
25    <span tal:repeat="action view/actions" tal:omit-tag="">
26      <input tal:replace="structure action/render"/>
27    </span>
28  </div>
29</form>
Note: See TracBrowser for help on using the repository browser.