Annotation of MPIWGWeb/zpt/showNewDBEntries.zpt, revision 1.1.2.3

1.1.2.1   dwinter     1: <html tal:define="newEntries options/newEntries">
1.1.2.3 ! casties     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="newEntry/department"/>
        !            16:     <td tal:content="newEntry/date_from"/>
        !            17:     <td><input tal:attributes="name python:here.urlQuote(newEntry.key)" size="20"/></td>
        !            18:   </tr>
        !            19: </table>
        !            20: <input type="submit" name="submit"></form>
        !            21: </body>
1.1.2.2   casties    22: </html>

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