diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-11-09 13:23:54 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-11-09 13:23:54 +0100 |
commit | fc475a0e8c1f66b9dfc4011aff904d8b15b5974f (patch) | |
tree | 5139f4a48da6a03ea30417c26ff4798005d4f604 /pyaggr3g470r/templates/favorites.html | |
parent | Updated management page. (diff) | |
download | newspipe-fc475a0e8c1f66b9dfc4011aff904d8b15b5974f.tar.gz newspipe-fc475a0e8c1f66b9dfc4011aff904d8b15b5974f.tar.bz2 newspipe-fc475a0e8c1f66b9dfc4011aff904d8b15b5974f.zip |
Fixed a minor bug in templates (when displaying list of articles).
Diffstat (limited to 'pyaggr3g470r/templates/favorites.html')
-rw-r--r-- | pyaggr3g470r/templates/favorites.html | 2 |
1 files changed, 1 insertions, 1 deletions
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 %} <div class="row"> - {% for n in range(0, feed.articles|length % 3) %} + {% for n in range(feed.articles|length-(feed.articles|length % 3), feed.articles|length) %} <div class="col-xs-6 col-sm-4 col-md-4"> {% if feed.articles[n].readed %}<h3>{% else %}<h1>{% endif %} <a href="/article/{{ feed.articles[n].id }}">{{ feed.articles[n].title }}</a><h2> |