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

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

Make label columns a bit smaller to reduce the distance between label and value. In IE we don't have the zebra style and tables are hardly readable.

File size: 838 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" width="33%">
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.