source: main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/studentpage.pt @ 8381

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

Move form label to site layout pagetemplates. This saves even more code.

File size: 513 bytes
Line 
1<table class="form-table">
2  <tbody>
3    <tal:block repeat="widget view/widgets">
4      <tr>
5        <td class="fieldname">
6          <tal:block content="widget/label"/>:
7        </td>
8        <td>
9          <input tal:replace="structure widget" />
10        </td>
11      </tr>
12    </tal:block>
13  </tbody>
14  <tfoot>
15    <tr>
16      <td colspan="2" class="align-right">
17        <input tal:repeat="action view/actions"
18               tal:replace="structure action/render" />
19      </td>
20    </tr>
21  </tfoot>
22</table>
23
24
Note: See TracBrowser for help on using the repository browser.