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/unread.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/unread.html')
-rw-r--r-- | pyaggr3g470r/templates/unread.html | 3 |
1 files changed, 2 insertions, 1 deletions
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 @@ <div class="col-md-6 col-md-offset-3"> <h1>{{ feed.title }}</h1> <a href="/articles/{{ feed.oid }}"><i class="glyphicon glyphicon-th-list"></i></a> + <h3>{{ feed.articles|length }} unread articles.</h3> </div> </div> {% for number in range(0, feed.articles|length-(feed.articles|length % 3), 3) %} @@ -25,7 +26,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> |