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

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

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

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

{% endif %}

{% endblock %}