view zpt/unifyPersons.zpt @ 51:5d636ba6b9cb default tip

Merge with b5d89c03f9585013d464f0240f6d82751b77186f
author dwinter
date Thu, 05 Dec 2013 13:24:57 +0100
parents e21db3150dae
children
line wrap: on
line source

<html>
<body tal:define="global i python:-1">
<h1>Unify persons</h1>
<form method="post" action="unifyPersons">
<table>
<tr><td>Nr.</td><td>ID not from GND</td><td>Name</td><td>GND id</td><td>GND Name</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:item[0]" tal:content="python:item[0]"/></td>
<td tal:content="python:item[1]"/>
<td><a tal:attributes="href python:item[2]" tal:content="python:item[2]"/></td>
<td tal:content="python:item[3]"/>
<td><input type="checkbox" name="changes" tal:attributes="value python:i"/>
</tr>
</table>
<input type="submit"/>
</form>
</body>
</html>