source: main/waeup.sirp/branches/henrik-bootstrap/src/waeup/sirp/students/browser_templates/studentpage.pt @ 7446

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

Backup of local changes in branch (work in progress).

File size: 607 bytes
Line 
1<h2 i18n:translate=""
2    tal:condition="view/label"
3    tal:content="view/label">Label</h2>
4
5<table class="form-table">
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  </tbody>
18  <tfoot>
19    <tr>
20      <td colspan="2" class="align-right">
21        <input tal:repeat="action view/actions"
22               tal:replace="structure action/render" />
23      </td>
24    </tr>
25  </tfoot>
26</table>
27
28
Note: See TracBrowser for help on using the repository browser.