source: main/waeup.ikoba/trunk/src/waeup/ikoba/documents/browser_templates/htmldocumentpage.pt @ 12227

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

Setup html documents. This technique replaces the usage of the HTMLDisplayWidget.

File size: 844 bytes
Line 
1<div class="wfstatus-sub"  i18n:domain="waeup.ikoba">
2  Document State: <span tal:replace="context/translated_state">
3    STATE</span>
4</div>
5
6<div class="workflow">
7  <div tal:repeat="msg context/history/messages">
8    <span tal:replace="msg">MESSAGE</span><br />
9  </div>
10</div>
11
12<table class="form-table" i18n:domain="waeup.ikoba"
13  tal:define="files provider:files">
14  <tbody>
15    <tr>
16      <td i18n:translate="" class="fieldname">
17        Document Type:
18      </td>
19      <td>
20        <span tal:content="context/translated_class_name">CLASSNAME</span>
21      </td>
22    </tr>
23    <tal:widgets content="structure provider:widgets" />
24    <tr>
25      <td i18n:translate="" class="fieldname">
26        Rendered Content:
27      </td>
28      <td>
29        <span tal:content="structure view/html">HTML</span>
30      </td>
31    </tr>
32  </tbody>
33</table>
Note: See TracBrowser for help on using the repository browser.