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

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

Use WAuPDisplayFormPage for ApplicantsContainerPage?.

Fix traceback if description field is empty.

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