Diff for /MPIWGWeb/zpt/Attic/showNewDBEntries.zpt between versions 1.1 and 1.1.2.4

version 1.1, 2007/04/18 10:03:12 version 1.1.2.4, 2007/10/18 12:00:17
Line 0 Line 1
   <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="python:here.decode(newEntry.department)"/>
       <td tal:content="python:here.decode(newEntry.date_from)"/>
       <td><input tal:attributes="name python:here.urlQuote(newEntry.key)" size="20"/></td>
     </tr>
   </table>
   <p>
     <input type="submit" name="submit">
   </p>
   </form>
   </body>
   </html>

Removed from v.1.1  
changed lines
  Added in v.1.1.2.4


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