From c0fea7d60800af8f31c2a568b365b42ad01daf14 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Fri, 28 Nov 2014 21:19:27 +0100 Subject: Improved layout of the template duplicate.html. --- pyaggr3g470r/templates/duplicates.html | 28 ++++++++++++++++++++++------ 1 file changed, 22 insertions(+), 6 deletions(-) (limited to 'pyaggr3g470r/templates/duplicates.html') diff --git a/pyaggr3g470r/templates/duplicates.html b/pyaggr3g470r/templates/duplicates.html index 548f845d..4b8a7c44 100644 --- a/pyaggr3g470r/templates/duplicates.html +++ b/pyaggr3g470r/templates/duplicates.html @@ -2,13 +2,29 @@ {% 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.') }}

+

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

{% endif %}

{% endblock %} -- cgit