{% extends "layout.html" %} {% block content %}
{% if duplicates != [] %}

{{ _('Duplicates in the feed') }} {{ feed.title }}.

{% for pair in duplicates %} {% endfor %}
#
{{ loop.index }}  {{ pair[0].title }} ({{ pair[0].entry_id }})  {{ pair[1].title }} ({{ pair[1].entry_id }})
{% else %}

{{ _('No duplicates in the feed') }} {{ feed.title }}.

{% endif %}

{% endblock %}