- Timestamp:
- 13 Dec 2014, 15:46:41 (10 years ago)
- Location:
- main/waeup.ikoba/trunk/src/waeup/ikoba/documents/browser_templates
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.ikoba/trunk/src/waeup/ikoba/documents/browser_templates/containermanagepage.pt
r12206 r12214 1 1 <form action="." tal:attributes="action request/URL" 2 2 i18n:domain="waeup.ikoba" method="POST" enctype="multipart/form-data"> 3 <ul class="tabs nav nav-tabs" data-tabs="tabs"> 4 <li class="active"> 5 <a href="#tab1" data-toggle="tab"> 6 <span i18n:translate="">Settings 7 </span></a> 8 </li> 9 <li> 10 <a href="#tab2" data-toggle="tab"> 11 <span i18n:translate="">Documents 12 </span> </a> 13 </li> 14 </ul> 15 <div class="tab-content"> 16 <div id="tab1" class="active tab-pane"> 17 <table class="form-table"> 18 <tbody> 19 <tal:widgets content="structure provider:widgets" /> 20 </tbody> 21 </table> 22 <div tal:condition="view/availableActions"> 23 <span tal:repeat="action view/actions" tal:omit-tag=""> 24 <input tal:condition="python:action.label in view.taboneactions" 25 tal:replace="structure action/render"/> 26 </span> 27 </div> 28 </div> 29 <div id="tab2" class="tab-pane"> 30 <h3 i18n:translate="">Documents</h3> 31 <table class="ikoba-data-table dataTableManage"> 32 <thead> 33 <tr> 34 <th> 35 </th> 36 <th i18n:translate="">Document Id 37 </th> 38 <th i18n:translate="">Title 39 </th> 40 </tr> 41 </thead> 42 <tbody> 43 <tr tal:repeat="doc context/values"> <td> 44 <input type="checkbox" name="val_id" 45 tal:attributes="value doc/document_id" /> </td> <td> 46 <a tal:attributes="href python: view.url(doc)" 47 tal:content="doc/__name__"> ID</a> </td> <td> 48 <span tal:content="doc/title">TITLE 49 </span> </td> 50 </tr> 51 </tbody> 52 </table> 53 <div tal:condition="view/availableActions"> 54 <span tal:repeat="action view/actions" tal:omit-tag=""> 55 <input tal:condition="python:action.label in view.tabtwoactions" 56 tal:replace="structure action/render"/> 57 </span> 58 </div> 59 </div> 3 <h3 i18n:translate="">Documents</h3> 4 <table class="ikoba-data-table dataTableManage"> 5 <thead> 6 <tr> 7 <th> 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> 60 31 </div> 61 32 </form> -
main/waeup.ikoba/trunk/src/waeup/ikoba/documents/browser_templates/containerpage.pt
r12206 r12214 6 6 <thead> 7 7 <tr> 8 <th i18n:translate=""> DocumentId</th>8 <th i18n:translate="">Id</th> 9 9 <th i18n:translate="">Title</th> 10 <th i18n:translate="">Type</th> 11 <th i18n:translate="">State</th> 10 12 </tr> 11 13 </thead> … … 13 15 <tr tal:repeat="value context/values"> 14 16 <td> <a tal:attributes="href python: view.url(value)"> 15 <span tal:content="value/document_id">ID</span></a></td> 17 <span tal:content="value/document_id">ID</span></a> 18 </td> 16 19 <td tal:content="value/title">TITLE</td> 20 <td tal:content="value/translated_class_name">CLASSNAME</td> 21 <td tal:content="value/translated_state">STATE</td> 17 22 </tr> 18 23 </tbody>
Note: See TracChangeset for help on using the changeset viewer.