source: main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser_templates/documentpage.pt @ 12793

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

Render content title below state/history box.

File size: 997 bytes
Line 
1<br />
2<div class="wfstatus-sub"  i18n:domain="waeup.ikoba">
3  Document State: <span tal:replace="context/translated_state">
4    VERIFICATIONSTATE</span>
5</div>
6
7<div class="workflow">
8  <div tal:repeat="msg context/history/messages">
9    <span tal:replace="msg">MESSAGE</span><br />
10  </div>
11</div>
12
13<h1 class="ikoba-content-label"
14    tal:condition="context/title|nothing"
15    tal:content="context/title">TITLE</h1>
16
17<table class="form-table" i18n:domain="waeup.ikoba"
18  tal:define="files provider:files">
19  <tbody>
20    <tr>
21      <td i18n:translate="" class="fieldname">
22        Document Type:
23      </td>
24      <td>
25        <span tal:content="context/translated_class_name">CLASSNAME</span>
26      </td>
27    </tr>
28    <tal:widgets content="structure provider:widgets" />
29    <tr tal:condition="python: files.replace('\n','')">
30      <td class="separator" colspan=2 i18n:translate="">
31        Connected Files
32      </td>
33    </tr>
34    <tal:files content="structure files" />
35  </tbody>
36</table>
Note: See TracBrowser for help on using the repository browser.