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

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

Make action buttons smaller on studentpage.

Add StudentAccommodation? container class which contains the accommodation objects.

Add StudentPayments? container class which contains the payments objects.

File size: 620 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  </tbody>
18  <tfoot>
19    <tr class="controls">
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
27</table>
28
29
Note: See TracBrowser for help on using the repository browser.