source: main/waeup.kofa/trunk/src/waeup/kofa/browser/templates/widgets.pt @ 7809

Last change on this file since 7809 was 7737, checked in by Henrik Bettermann, 13 years ago

Replace widgets loop in all pagetemplates by the new widgets provider.

File size: 604 bytes
Line 
1<tal:block repeat="widget view/widgets">
2  <tr>
3    <td class="fieldname">
4      <span tal:condition="widget/required">*</span>
5      <span tal:content="widget/label">LABEL</span>:
6    </td>
7    <td>
8      <span tal:content="structure widget">
9        <input type="text" />
10      </span>
11      <tal:error tal:condition="widget/error">
12        <span tal:replace="structure widget/error">ERROR</span>
13      </tal:error>
14      <tal:hint tal:condition="widget/hint">
15        <div class="hint" tal:content="structure widget/hint">HINT</div>
16      </tal:hint>
17    </td>
18  </tr>
19</tal:block>
Note: See TracBrowser for help on using the repository browser.