source: main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/studentaddpage.pt @ 6631

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

Add interfaces for clearance and personal data.
Add display and manage views.

File size: 886 bytes
Line 
1<h2 i18n:translate=""
2    tal:condition="view/label"
3    tal:content="view/label">Label</h2>
4
5<form method="POST">
6  <table>
7    <tbody>
8      <tr>
9        <td><label for="form.student_id">Student Id:</label></td>
10        <td>
11         <input name="form.student_id" type="text" size="7" maxlength="7"
12                value="" />
13        </td>
14      </tr>
15      <tr>
16        <td><label for="form.name">Full Name:</label></td>
17        <td>
18         <input name="form.name" type="text" size="30" maxlength="30"
19                value="" />
20        </td>
21      </tr>
22      <tr>
23        <td>
24            <div class="actionButtons" tal:condition="view/availableActions">
25                <span tal:repeat="action view/actions" tal:omit-tag="">
26                    <input tal:replace="structure action/render"/>
27                </span>
28            </div>
29        </td>
30      </tr>
31    </tbody>
32  </table>
33</form>
Note: See TracBrowser for help on using the repository browser.