zoo/zoo/zoo_demo/templates/zoo_demo/doublons.html

23 lines
471 B
HTML

<html>
<body>
<h1>{{ schema.name }}</h1>
<p><a href="..">Retour</a></p>
<h2>Définition</h2>
<pre>{{ schema.schema|pprint }}</pre>
<h2>Doublons</h2>
{% if not doublons %}
<p>Aucun doublon</p>
{% else %}
<table>
{% for one, two in doublons %}
<tr>
<td>{{ two.similarity }}</td>
<td><pre>{{ one.content|pprint }}</pre></td>
<td><pre>{{ two.content|pprint }}</pre></td>
</tr>
{% endfor %}
</table>
{% endif %}
</body>
</html>