source: main/waeup.ikoba/trunk/src/waeup/ikoba/documents/browser_templates/containermanagepage.pt

Last change on this file was 12214, checked in by Henrik Bettermann, 10 years ago

Adjust UI components in documents and customers package.

File size: 1.1 KB
Line 
1<form action="." tal:attributes="action request/URL"
2  i18n:domain="waeup.ikoba" method="POST" enctype="multipart/form-data">
3  <h3 i18n:translate="">Documents</h3>
4  <table class="ikoba-data-table dataTableManage">
5    <thead>
6      <tr>
7        <th>&nbsp;
8        </th>
9        <th i18n:translate="">Id</th>
10        <th i18n:translate="">Title</th>
11        <th i18n:translate="">Type</th>
12        <th i18n:translate="">State</th>
13      </tr>
14    </thead>
15    <tbody>
16      <tr tal:repeat="doc context/values"> <td>
17          <input type="checkbox" name="val_id"
18                 tal:attributes="value doc/document_id" /> </td> <td>
19          <a tal:attributes="href python: view.url(doc)"
20             tal:content="doc/__name__"> ID</a> </td>
21          <td tal:content="doc/title">TITLE</td>
22          <td tal:content="doc/translated_class_name">CLASSNAME</td>
23          <td tal:content="doc/translated_state">STATE</td>
24      </tr>
25    </tbody>
26  </table>
27  <div 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.