source: main/waeup.ikoba/trunk/src/waeup/ikoba/customers/browser_templates/basepage.pt @ 11967

Last change on this file since 11967 was 11967, checked in by Henrik Bettermann, 10 years ago

Add browser components for customers. Tests will follow.

File size: 680 bytes
Line 
1<table i18n:domain="waeup.ikoba" 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    <tr>
14      <td class="fieldname" i18n:translate="">
15          Password:
16      </td>
17      <td>
18          <tal:password replace="view/hasPassword" />
19      </td>
20    </tr>
21  </tbody>
22  <tfoot>
23    <tr>
24      <td>
25        <input tal:repeat="action view/actions"
26               tal:replace="structure action/render" />
27      </td>
28    </tr>
29  </tfoot>
30</table>
Note: See TracBrowser for help on using the repository browser.