aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/home.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-12 16:01:13 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-12 16:01:13 +0200
commit2bd9ab12c2f3551e6ad2ffa05282d87711adbf6b (patch)
tree25467b4d7e3a68d913fc0079bc21ecc80a01147b /pyaggr3g470r/templates/home.html
parentRemoved install.sh file. (diff)
downloadnewspipe-2bd9ab12c2f3551e6ad2ffa05282d87711adbf6b.tar.gz
newspipe-2bd9ab12c2f3551e6ad2ffa05282d87711adbf6b.tar.bz2
newspipe-2bd9ab12c2f3551e6ad2ffa05282d87711adbf6b.zip
The /home page is now loading faster.
Diffstat (limited to 'pyaggr3g470r/templates/home.html')
-rw-r--r--pyaggr3g470r/templates/home.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/pyaggr3g470r/templates/home.html b/pyaggr3g470r/templates/home.html
index 6363ee06..6448fc15 100644
--- a/pyaggr3g470r/templates/home.html
+++ b/pyaggr3g470r/templates/home.html
@@ -1,10 +1,10 @@
{% extends "layout.html" %}
{% block content %}
<div class="container">
- {% if user.feeds.all()|count == 0 %}
+ {% if result|count == 0 %}
<h1>You are not subscribed to any feed. <a href="/create_feed/">Fix this</a>.</h1>
{% else %}
- {% for feed in user.feeds|sort(attribute="title") %}
+ {% for feed in result|sort(attribute="title") %}
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h1>{{ feed.title|safe }}</h1>
@@ -17,7 +17,7 @@
<a href="/mark_as_read/{{ feed.id }}"><i class="glyphicon glyphicon-check" title="Mark all as read"></i></a>
</div>
</div>
- {% for number in range(0, feed.articles[0:9]|count-(feed.articles[0:9]|count % 3), 3) %}
+ {% for number in range(0, feed.articles.all()|count-(feed.articles.all()|count % 3), 3) %}
<div class="row">
{% for n in range(number, number+3) %}
<div class="col-xs-6 col-sm-4 col-md-4">
@@ -29,9 +29,9 @@
{% endfor %}
</div>
{% endfor %}
- {% if feed.articles[0:9]|count % 3 != 0 %}
+ {% if feed.articles.all()|count % 3 != 0 %}
<div class="row">
- {% for n in range(feed.articles[0:9]|count-(feed.articles[0:9]|count % 3), feed.articles[0:9]|count) %}
+ {% for n in range(feed.articles.all()|count-(feed.articles.all()|count % 3), feed.articles.all()|count) %}
<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>
bgstack15