source: main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/studentscontainerpage.pt @ 6625

Last change on this file since 6625 was 6622, checked in by Henrik Bettermann, 14 years ago

Add some basic UI stuff to start and to play with.

File size: 750 bytes
Line 
1<h2 tal:content="view/label">Title</h2>
2
3<form method="POST">
4<table class="zebra" tal:condition="layout/isAuthenticated">
5  <tbody>
6    <tal:block repeat="widget view/widgets">
7      <tr>
8        <td class="fieldname">
9          <tal:block replace="python:widget.label"/>:
10        </td>
11        <td class="field">
12          <tal:block tal:replace="structure widget" />
13        </td>
14      </tr>
15    </tal:block>
16      <tr>
17        <td>
18            <div class="actionButtons" tal:condition="view/availableActions">
19                <span tal:repeat="action view/actions" tal:omit-tag="">
20                    <input tal:replace="structure action/render"/>
21                </span>
22            </div>
23        </td>
24      </tr>
25  </tbody>
26</table>
27</form>
Note: See TracBrowser for help on using the repository browser.