source: main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser_templates/applicantscontaineraddpage.pt @ 7687

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

Start internationalization of pagetemplates. Clean up and remove unneeded i18n:translate tags first.

File size: 1.0 KB
Line 
1<form action="." tal:attributes="action request/URL" method="post"
2      class="edit-form" enctype="multipart/form-data">
3
4  <table class="form-table">
5    <tbody>
6      <tal:block repeat="widget view/widgets">
7        <tr>
8          <td class="fieldname">
9            <span tal:condition="widget/required">*</span>
10            <span tal:content="widget/label">label</span>:
11          </td>
12          <td>
13            <span tal:content="structure widget">
14              <input type="text" />
15            </span>
16            <tal:error tal:condition="widget/error">
17              <span tal:replace="structure widget/error">error</span>
18            </tal:error>
19            <tal:hint tal:condition="widget/hint">
20              <span tal:content="structure widget/hint">hint</span>
21            </tal:hint>
22          </td>
23        </tr>
24      </tal:block>
25    </tbody>
26  </table>
27
28  <div tal:condition="view/availableActions">
29    <input tal:repeat="action view/actions"
30             tal:replace="structure action/render"
31             />
32  </div>
33</form>
Note: See TracBrowser for help on using the repository browser.