source: main/waeup.sirp/branches/henrik-bootstrap/src/waeup/sirp/hostels/browser_templates/containermanagepage.pt @ 7441

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

Add pagetemplates and extend logging.

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