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

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

Adding some attributes to ApplicantsContainer?. Generate title and code of containers automatically.

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