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

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

Add SetPassword? page which uses an PWD access code as password for first-time login (admission checking).

Remove password from schema. This makes things much easier to handle.

File size: 773 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  </tbody>
26  <tfoot>
27    <tr class="controls">
28      <td colspan="2" class="align-right">
29        <input tal:repeat="action view/actions"
30               tal:replace="structure action/render" />
31      </td>
32    </tr>
33  </tfoot>
34</table>
Note: See TracBrowser for help on using the repository browser.