source: main/waeup.kofa/trunk/src/waeup/kofa/documents/browser_templates/containerpage.pt @ 13305

Last change on this file since 13305 was 12437, checked in by Henrik Bettermann, 10 years ago

Add documents package.

File size: 793 bytes
Line 
1<div i18n:domain="waeup.kofa" i18n:translate="" tal:condition="python: not len(context.keys())">
2There are no subobjects registered yet.
3</div>
4
5<table class="kofa-data-table dataTable" i18n:domain="waeup.kofa">
6  <thead>
7    <tr>
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    </tr>
13  </thead>
14  <tbody>
15    <tr tal:repeat="value context/values">
16      <td> <a tal:attributes="href python: view.url(value)">
17          <span tal:content="value/document_id">ID</span></a>
18      </td>
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>
22    </tr>
23  </tbody>
24</table>
Note: See TracBrowser for help on using the repository browser.