comparison zpt/showNewDBEntries.zpt @ 0:bca61e893fcc

first checkin of MPIWGWeb r2 branch from CVS into mercurial
author casties
date Thu, 10 Jan 2013 17:52:13 +0100
parents
children cc5198541af8
comparison
equal deleted inserted replaced
-1:000000000000 0:bca61e893fcc
1 <html tal:define="newEntries options/newEntries">
2 <body>
3 <h2>New entries</h2>
4 <form action="createNewStaffObjects">
5 <table border="1">
6 <tr>
7 <th>First name</th>
8 <th>Last name</th>
9 <th>Department</th>
10 <th>Stay from</th>
11 <th>e_mail (without @)</th>
12 <tr tal:repeat="newEntry newEntries">
13 <td tal:content="python:here.decode(newEntry.first_name)" />
14 <td tal:content="python:here.decode(newEntry.last_name)" />
15 <td tal:content="python:here.decode(newEntry.department)"/>
16 <td tal:content="python:here.decode(newEntry.date_from)"/>
17 <td><input tal:attributes="name python:here.urlQuote(newEntry.key)" size="20"/></td>
18 </tr>
19 </table>
20 <p>
21 <input type="submit" name="submit">
22 </p>
23 </form>
24 </body>
25 </html>