source: main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser_templates/applicantscontainereditpage.pt @ 5841

Last change on this file since 5841 was 5838, checked in by uli, 14 years ago

Display start/enddates correctly.

File size: 1.2 KB
Line 
1<div>
2  <form method="POST">
3    <table tal:define="dates view/getFormattedDates">
4      <tr>
5        <td><label for="form.title">Title:</label></td>
6        <td><input type="text" name="title" id="form.title"
7                   size="40"
8                   tal:attributes="value context/title" /></td>
9        <td></td>
10      </tr>
11      <tr>
12        <td><label for="form.description">Description:</label></td>
13        <td><input type="text" name="description" id="form.description"
14                   size="60"
15                   tal:attributes="value context/description" /></td>
16        <td></td>
17      </tr>
18      <tr>
19        <td><label for="form.deadline">Startdate:</label></td>
20        <td><input type="text" name="startdate" class="datepicker"
21                   tal:attributes="value dates/start"
22                   size="30" />
23        (Format: YYYY-MM-DD)
24        </td>
25        <td></td>
26      </tr>
27      <tr>
28        <td><label for="form.deadline">Enddate:</label></td>
29        <td><input type="text" name="enddate" class="datepicker"
30                   tal:attributes="value dates/end"
31                   size="30" />
32        (Format: YYYY-MM-DD)
33        </td>
34        <td></td>
35      </tr>
36    </table>
37    <div>
38      <input type="submit" name="SAVE" value="Save" />
39      <input type="reset" />
40      <input type="submit" name="CANCEL" value="Cancel" />
41    </div>
42  </form>
43</div>
Note: See TracBrowser for help on using the repository browser.