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="">Id</th> |
---|
9 | <th i18n:translate="">Title</th> |
---|
10 | <th i18n:translate="">Type</th> |
---|
11 | <th i18n:translate="">State</th> |
---|
12 | <th i18n:translate="">Last Transition</th> |
---|
13 | </tr> |
---|
14 | </thead> |
---|
15 | <tbody> |
---|
16 | <tr tal:repeat="document context/values"> |
---|
17 | <td> |
---|
18 | <input type="checkbox" |
---|
19 | name="val_id" |
---|
20 | tal:attributes="value document/__name__" |
---|
21 | tal:condition="python: not view.unremovable(document)" /> |
---|
22 | </td> |
---|
23 | <td> |
---|
24 | <a tal:attributes="href python: view.url(document)"> |
---|
25 | <span tal:content="python: document.document_id[:9]">DOCID</span> |
---|
26 | </a> |
---|
27 | </td> |
---|
28 | <td> |
---|
29 | <span tal:content="document/title">TITLE</span> |
---|
30 | </td> |
---|
31 | <td> |
---|
32 | <span tal:content="document/translated_class_name">CLASSNAME</span> |
---|
33 | </td> |
---|
34 | <td> |
---|
35 | <span tal:content="document/translated_state">STATE</span> |
---|
36 | </td> |
---|
37 | <td> |
---|
38 | <span tal:content="document/formatted_transition_date"> |
---|
39 | LASTTRANSITIONDATE |
---|
40 | </span> |
---|
41 | </td> |
---|
42 | </tr> |
---|
43 | </tbody> |
---|
44 | </table> |
---|
45 | |
---|
46 | <div tal:condition="python: view.availableActions and view.manage_documents_allowed"> |
---|
47 | <span tal:repeat="action view/actions" |
---|
48 | tal:omit-tag=""> |
---|
49 | <input tal:replace="structure action/render"/> |
---|
50 | </span> |
---|
51 | </div> |
---|
52 | </form> |
---|
Note: See
TracBrowser for help on using the repository browser.