diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-10-02 08:06:03 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-10-02 08:06:03 +0200 |
commit | c45c9e2d78f116c5241676d887df9f1812f218a7 (patch) | |
tree | 523eb5d35ed4e06f00b348954e21188b6c030f9b /pyaggr3g470r/templates | |
parent | Do not wait for the complete document is loaded to run the js code. (diff) | |
download | newspipe-c45c9e2d78f116c5241676d887df9f1812f218a7.tar.gz newspipe-c45c9e2d78f116c5241676d887df9f1812f218a7.tar.bz2 newspipe-c45c9e2d78f116c5241676d887df9f1812f218a7.zip |
Bug fix: minor problem on the /search page.
Diffstat (limited to 'pyaggr3g470r/templates')
-rw-r--r-- | pyaggr3g470r/templates/search.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyaggr3g470r/templates/search.html b/pyaggr3g470r/templates/search.html index 7b32d80c..d3a1558d 100644 --- a/pyaggr3g470r/templates/search.html +++ b/pyaggr3g470r/templates/search.html @@ -18,7 +18,7 @@ <a href="/edit_feed/{{ feed.id }}"><i class="glyphicon glyphicon-edit" title="Edit this feed"></i></a> </div> </div> - {% for number in range(0, feed.articles.all()|length-(feed.articles.all()|length % 3), 3) %} + {% for number in range(0, feed.articles|length-(feed.articles|length % 3), 3) %} <div class="row"> {% for n in range(number, number+3) %} <div class="col-xs-6 col-sm-4 col-md-4"> @@ -30,9 +30,9 @@ {% endfor %} </div> {% endfor %} - {% if feed.articles.all()|length % 3 != 0 %} + {% if feed.articles|length % 3 != 0 %} <div class="row"> - {% for n in range(feed.articles.all()|length-(feed.articles.all()|length % 3), feed.articles.all()|length) %} + {% 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|safe }}</a> |