Mercurial > hg > MPIWGThesaurus
view zpt/rearrangePersons.zpt @ 28:30dee40ff84b
thesaurus for new version of the website
author | dwinter |
---|---|
date | Fri, 24 May 2013 16:15:32 +0200 |
parents | 3a5a7c2552c8 |
children |
line wrap: on
line source
<html> <body tal:define="global i python:-1"> <h1>Edit Persons</h1> <form method="post" action="rearangePersonIDs"> <table> <tr><td>Nr.</td><td>saved ID</td><td>Name</td><td>New ID</td><td>Unify?</td> </tr> <tr tal:repeat="item python:options['changeList']" > <td tal:define="global i python:i+1" tal:content="python:i"/> <td><a tal:attributes="href python:options['editURL']+item[0]">edit</a></td> <td><a tal:attributes="href python:item[0]" tal:content="python:item[0]"/></td> <td tal:content="python:item[1]"/> <td><a tal:attributes="href python:item[2]">see</a><input size="100" tal:attributes="name python:'newID_'+str(i); value python:item[2]"/></td> <td><input type="checkbox" name="changes" tal:attributes="value python:i"/> <td><a tal:attributes="href python:options['lookupUrl']">look up</a></td> </tr> </table> <input type="submit"/> </form> </body> </html>