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

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

Replace student's name attribute by fullname attributes to avoid confusion.

File size: 685 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.fullname">Full Name:</label></td>
10        <td>
11         <input name="form.fullname" type="text" size="30" maxlength="30"
12                value="" />
13        </td>
14      </tr>
15      <tr>
16        <td>
17            <div class="actionButtons" tal:condition="view/availableActions">
18                <span tal:repeat="action view/actions" tal:omit-tag="">
19                    <input tal:replace="structure action/render"/>
20                </span>
21            </div>
22        </td>
23      </tr>
24    </tbody>
25  </table>
26</form>
Note: See TracBrowser for help on using the repository browser.