Last change
on this file since 12023 was
12016,
checked in by Henrik Bettermann, 10 years ago
|
Add more customer document components.
|
File size:
1.0 KB
|
Line | |
---|
1 | <form action="." tal:attributes="action request/URL" method="POST" |
---|
2 | i18n:domain="waeup.ikoba" enctype="multipart/form-data"> |
---|
3 | |
---|
4 | <table class="ikoba-data-table dataTableManage"> |
---|
5 | <thead> |
---|
6 | <tr> |
---|
7 | <th> </th> |
---|
8 | <th i18n:translate="">Document Id</th> |
---|
9 | <th i18n:translate="">Title</th> |
---|
10 | </tr> |
---|
11 | </thead> |
---|
12 | <tbody> |
---|
13 | <tr tal:repeat="cl context/values"> |
---|
14 | <td> |
---|
15 | <input type="checkbox" |
---|
16 | name="val_id" |
---|
17 | tal:attributes="value cl/__name__" |
---|
18 | tal:condition="python: not view.unremovable(cl)" /> |
---|
19 | </td> |
---|
20 | <td> |
---|
21 | <a tal:attributes="href python: view.url(cl)"> |
---|
22 | <span tal:content="cl/document_id">DOCID</span></a> |
---|
23 | </td> |
---|
24 | <td> |
---|
25 | <span tal:content="cl/title">TITLE</span> |
---|
26 | </td> |
---|
27 | </tr> |
---|
28 | </tbody> |
---|
29 | </table> |
---|
30 | |
---|
31 | <div tal:condition="python: view.availableActions and view.manage_documents_allowed"> |
---|
32 | <span tal:repeat="action view/actions" |
---|
33 | tal:omit-tag=""> |
---|
34 | <input tal:replace="structure action/render"/> |
---|
35 | </span> |
---|
36 | </div> |
---|
37 | </form> |
---|
Note: See
TracBrowser for help on using the repository browser.