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 +++++++++++++++++------------------ pyaggr3g470r/templates/favorites.html | 2 +- pyaggr3g470r/templates/home.html | 2 +- pyaggr3g470r/templates/unread.html | 3 +- 4 files changed, 31 insertions(+), 30 deletions(-) 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 diff --git a/pyaggr3g470r/templates/favorites.html b/pyaggr3g470r/templates/favorites.html index e60ccd85..3a02cb05 100644 --- a/pyaggr3g470r/templates/favorites.html +++ b/pyaggr3g470r/templates/favorites.html @@ -25,7 +25,7 @@ {% endfor %} {% if feed.articles|length % 3 != 0 %}
- {% for n in range(0, feed.articles|length % 3) %} + {% 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 }}

diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html index 46842382..c2b0da86 100644 --- a/pyaggr3g470r/templates/home.html +++ b/pyaggr3g470r/templates/home.html @@ -22,7 +22,7 @@ {% endfor %} {% if feed.articles|length % 3 != 0 %}
- {% for n in range(0, feed.articles|length % 3) %} + {% 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 }}

diff --git a/pyaggr3g470r/templates/unread.html b/pyaggr3g470r/templates/unread.html index a7991363..2296e6ec 100644 --- a/pyaggr3g470r/templates/unread.html +++ b/pyaggr3g470r/templates/unread.html @@ -9,6 +9,7 @@

{{ feed.title }}

+

{{ feed.articles|length }} unread articles.

{% for number in range(0, feed.articles|length-(feed.articles|length % 3), 3) %} @@ -25,7 +26,7 @@ {% endfor %} {% if feed.articles|length % 3 != 0 %}
- {% for n in range(0, feed.articles|length % 3) %} + {% 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 }}

-- cgit