source: main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser_templates/applicantscontainerpage.pt @ 6064

Last change on this file since 6064 was 6063, checked in by Henrik Bettermann, 14 years ago

Implement ReSTWidget.

This widget must only be used once per page because it renders h1 .. h4 tags inside an id.

File size: 754 bytes
Line 
1<h2 tal:content="context/title">Title</h2>
2
3<span tal:replace="structure view/widgets/description">Title</span>
4
5<br />
6
7<table class="zebra">
8  <tbody>
9      <tr>
10        <td class="fieldname">
11          Type (Code):
12        </td>
13        <td class="field">
14          <input tal:replace="context/__name__" />
15        </td>
16      </tr> 
17    <tal:block repeat="widget view/widgets">
18      <tal:condition condition="python:widget.name not in ['form.description','form.title']">
19      <tr>
20        <td class="fieldname">
21          <tal:block replace="python:widget.label"/>:
22        </td>
23        <td class="field">
24          <tal:block tal:replace="structure widget" />
25        </td>
26      </tr>
27      </tal:condition>
28    </tal:block>
29  </tbody>
30</table>
Note: See TracBrowser for help on using the repository browser.