source: main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser_templates/addcontainer.pt @ 6019

Last change on this file since 6019 was 5859, checked in by uli, 14 years ago

Fix description input: make it a textarea and set label correctly.

File size: 1.1 KB
Line 
1<form method="POST">
2  Container to add:
3  <table>
4    <tr>
5      <td><label for="provider">Type: </label></td>
6      <td><select
7              id="provider"
8              name="providername"
9              tal:repeat="provider view/getContainerProviders">
10        <option
11            tal:attributes="value provider/name">
12          <span tal:replace="provider/provider/factory/title">Title</span>
13          --
14          <span tal:replace="provider/provider/factory/description">Description</span>
15        </option>
16      </select>
17      </td>
18    </tr>
19    <tr>
20      <td><label for="name">Name: </label></td>
21      <td><input id="name" type="text" name="name" />
22      Some name like 'pude11', 'cest10', or similar.</td>
23    </tr>
24    <tr>
25      <td><label for="title">Title: </label></td>
26      <td><input id="title" type="text" name="title" /></td>
27    </tr>
28    <tr>
29      <td><label for="description">Description: </label></td>
30      <td><textarea id="description" name="description"></textarea></td>
31    </tr>
32  </table>
33  <div>
34    <input type="submit" name="ADD" value="Add" />
35    <input type="reset" name="RESET" value="Reset" />
36    <input type="submit" name="CANCEL" value="Cancel" />
37  </div>
38</form>
Note: See TracBrowser for help on using the repository browser.