From fc475a0e8c1f66b9dfc4011aff904d8b15b5974f Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sat, 9 Nov 2013 13:23:54 +0100 Subject: Fixed a minor bug in templates (when displaying list of articles). --- pyaggr3g470r/templates/articles.html | 54 ++++++++++++++++++------------------ 1 file changed, 27 insertions(+), 27 deletions(-) (limited to 'pyaggr3g470r/templates/articles.html') diff --git a/pyaggr3g470r/templates/articles.html b/pyaggr3g470r/templates/articles.html index 28420b5c..32631ca0 100644 --- a/pyaggr3g470r/templates/articles.html +++ b/pyaggr3g470r/templates/articles.html @@ -3,35 +3,35 @@

{{ feed.title }}

-

{{ feed.articles|length }} articles.

+

{{ feed.articles|count }} articles.

- {% for number in range(0, feed.articles|length-2, 3) %} -
- {% for n in range(number, number+3) %} -
- {% if feed.articles[n].readed %}

{% else %}

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

- {% if feed.articles[n].readed %}

{% else %}{% endif %} -
{{ feed.articles[n].date }}
+ {% if feed.articles|count == 0 %} +

No articles.

+ {% else %} + {% for number in range(0, feed.articles|length-(feed.articles|length % 3), 3) %} +
+ {% for n in range(number, number+3) %} +
+ {% if feed.articles[n].readed %}

{% else %}

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

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

{% else %}{% endif %} +
{{ feed.articles[n].date }}
+
+ {% endfor %}
- {% endfor %} -
- {% endfor %} - {% if feed.articles|length % 3 !=0 %} -
-
- {% if feed.articles[feed.articles|length-2].readed %}

{% else %}

{% endif %} - {{ feed.articles[feed.articles|length-2].title }}

- {% if feed.articles[feed.articles|length-2].readed %}

{% else %}{% endif %} -
{{ feed.articles[feed.articles|length-2].date }}
+ {% endfor %} + {% if feed.articles|length % 3 != 0 %} +
+ {% 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 }}

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

{% else %}{% endif %} +
{{ feed.articles[n].date }}
+
+ {% endfor %}
-
- {% if feed.articles[feed.articles|length-1].readed %}

{% else %}

{% endif %} - {{ feed.articles[feed.articles|length-1].title }}

- {% if feed.articles[feed.articles|length-1].readed %}

{% else %}{% endif %} -
{{ feed.articles[feed.articles|length-1].date }}
-
-
+ {% endif %} {% endif %}
-{% endblock %} +{% endblock %} \ No newline at end of file -- cgit