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

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

Add type of application (code).

File size: 748 bytes
Line 
1<h2 tal:content="context/title">Title</h2>
2
3<div tal:content="structure view/descriptionToHTML">
4  Description
5</div>
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 content="python:widget.label"/>:
22        </td>
23        <td class="field">
24          <input 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.