7
|
1 <html>
|
|
2 <body tal:define="global i python:-1">
|
|
3 <h1>Unify persons</h1>
|
|
4 <form method="post" action="unifyPersons">
|
|
5 <table>
|
|
6 <tr><td>Nr.</td><td>ID not from GND</td><td>Name</td><td>GND id</td><td>GND Name</td><td>Unify?</td>
|
|
7 </tr>
|
|
8 <tr tal:repeat="item python:options['changeList']" >
|
|
9 <td tal:define="global i python:i+1" tal:content="python:i"/>
|
|
10 <td><a tal:attributes="href python:item[0]" tal:content="python:item[0]"/></td>
|
|
11 <td tal:content="python:item[1]"/>
|
|
12 <td><a tal:attributes="href python:item[2]" tal:content="python:item[2]"/></td>
|
|
13 <td tal:content="python:item[3]"/>
|
|
14 <td><input type="checkbox" name="changes" tal:attributes="value python:i"/>
|
|
15 </tr>
|
|
16 </table>
|
|
17 <input type="submit"/>
|
|
18 </form>
|
|
19 </body>
|
|
20 </html> |