Mercurial > hg > MPIWGWeb
view zpt/showNewDBEntries.zpt @ 213:8d6d14498778
trying # 130: sortProjects funktioniert nicht
https://it-dev.mpiwg-berlin.mpg.de/tracs/webpage/ticket/130
author | casties |
---|---|
date | Wed, 07 Aug 2013 11:27:29 +0200 |
parents | cc5198541af8 |
children |
line wrap: on
line source
<html tal:define="newEntries options/newEntries"> <body> <h2>New entries</h2> <form action="members/addEmails"> <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:newEntry.key" size="20"/></td> </tr> </table> <p> <input type="submit" name="submit"> </p> </form> </body> </html>