File:  [Repository] / MPIWGWeb / zpt / Attic / showNewDBEntries.zpt
Revision 1.1.2.3: download - view: text, annotated - select for diffs - revision graph
Thu Oct 18 11:49:43 2007 UTC (16 years, 8 months ago) by casties
Branches: r2
added more info to "add email" form

<html tal:define="newEntries options/newEntries">
<body>
<h2>New entries</h2>
<form action="createNewStaffObjects">
<table border="1">
  <tr>
    <th>First name</th>
    <th>Last name</th>
    <th>Department</th>
    <th>Stay from</th>
    <th>e_mail (without @)</th>
  <tr tal:repeat="newEntry newEntries">
    <td tal:content="python:here.decode(newEntry.first_name)" />
    <td tal:content="python:here.decode(newEntry.last_name)" />
    <td tal:content="newEntry/department"/>
    <td tal:content="newEntry/date_from"/>
    <td><input tal:attributes="name python:here.urlQuote(newEntry.key)" size="20"/></td>
  </tr>
</table>
<input type="submit" name="submit"></form>
</body>
</html>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>