source: main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/basepage.pt @ 7171

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

Add passport picture uploader to student base data pages.

File size: 826 bytes
Line 
1<h2 i18n:translate=""
2    tal:condition="view/label"
3    tal:content="view/label">Label</h2>
4
5<table class="zebra">
6  <tbody>
7    <tal:block repeat="widget view/widgets">
8      <tr>
9        <td class="fieldname">
10          <tal:block content="widget/label"/>:
11        </td>
12        <td>
13          <input tal:replace="structure widget" />
14        </td>
15      </tr>
16    </tal:block>
17    <tr>
18      <td class="fieldname">
19          Password:
20      </td>
21      <td>
22          <tal:password replace="view/hasPassword" />
23      </td>
24    <tr>
25    <tal:files content="structure provider:files" />
26  </tbody>
27  <tfoot>
28    <tr class="controls">
29      <td colspan="2" class="align-right">
30        <input tal:repeat="action view/actions"
31               tal:replace="structure action/render" />
32      </td>
33    </tr>
34  </tfoot>
35</table>
Note: See TracBrowser for help on using the repository browser.