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

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)" />
1.1.2.4 ! casties    15:     <td tal:content="python:here.decode(newEntry.department)"/>
        !            16:     <td tal:content="python:here.decode(newEntry.date_from)"/>
1.1.2.3   casties    17:     <td><input tal:attributes="name python:here.urlQuote(newEntry.key)" size="20"/></td>
                     18:   </tr>
                     19: </table>
1.1.2.4 ! casties    20: <p>
        !            21:   <input type="submit" name="submit">
        !            22: </p>
        !            23: </form>
1.1.2.3   casties    24: </body>
1.1.2.2   casties    25: </html>

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