source: main/waeup.sirp/branches/uli-studentpw/src/waeup/sirp/students/browser_templates/baseeditpage.pt @ 6709

Last change on this file since 6709 was 6708, checked in by uli, 13 years ago

Clean up.

File size: 1.5 KB
Line 
1<h2 i18n:translate=""
2    tal:condition="view/label"
3    tal:content="view/label">Label</h2>
4
5<form action="." tal:attributes="action request/URL" method="post"
6      class="edit-form" enctype="multipart/form-data">
7
8  <div class="form-status"
9    tal:define="status view/status"
10    tal:condition="status">
11    <span i18n:translate="" tal:content="view/status">
12      Form status summary
13    </span>
14  </div>
15
16  <table class="form-fields zebra">
17    <tbody>
18      <tal:block repeat="widget view/widgets">
19        <tr>
20          <td class="label">
21            <label tal:attributes="for widget/name">
22              <span class="required" tal:condition="widget/required">*</span>
23              <span i18n:translate="" tal:content="widget/label">label</span>:
24            </label>
25          </td>
26          <td class="field">
27            <span class="widget" tal:content="structure widget">
28              <input type="text" />
29            </span>
30            <tal:error tal:condition="widget/error">
31              <span tal:replace="structure widget/error">error</span>
32            </tal:error>
33            <tal:hint tal:condition="widget/hint">
34              <span class="hint" tal:content="structure widget/hint">hint</span>
35            </tal:hint>
36          </td>
37        </tr>
38      </tal:block>
39    </tbody>
40  </table>
41
42  <div class="actionButtons" tal:condition="view/availableActions">
43    <input tal:repeat="action view/actions"
44           tal:replace="structure action/render"
45           />
46  </div>
47</form>
Note: See TracBrowser for help on using the repository browser.