From 8172bf0724ff29aaaa2beb44b5fd31c2a6aa203b Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Fri, 27 Dec 2013 10:54:58 +0100 Subject: Minor fix in the template of unread articles. --- pyaggr3g470r/templates/unread.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyaggr3g470r/templates/unread.html b/pyaggr3g470r/templates/unread.html index 896b1372..46368b9a 100644 --- a/pyaggr3g470r/templates/unread.html +++ b/pyaggr3g470r/templates/unread.html @@ -19,7 +19,7 @@ {% for n in range(number, number+3) %}
{% if feed.articles[n].readed %}

{% else %}

{% endif %} - {{ feed.articles[n].title }}

+ {{ feed.articles[n].title }} {% if feed.articles[n].readed %}

{% else %}{% endif %}
{{ feed.articles[n].date }}
@@ -31,7 +31,7 @@ {% for n in range(feed.articles|length-(feed.articles|length % 3), feed.articles|length) %}
{% if feed.articles[n].readed %}

{% else %}

{% endif %} - {{ feed.articles[n].title }}

+ {{ feed.articles[n].title }} {% if feed.articles[n].readed %}

{% else %}{% endif %}
{{ feed.articles[n].date }}
-- cgit