aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/feeds.html
diff options
context:
space:
mode:
authorFrançois Schmidts <francois.schmidts@gmail.com>2015-05-24 19:09:35 +0200
committerFrançois Schmidts <francois.schmidts@gmail.com>2015-07-02 15:34:16 +0200
commit4f03d7b324360f718780fcbdfc359f60896fead4 (patch)
tree772ead2931ebd12dfff3eb2199d13463ae3e1fc3 /pyaggr3g470r/templates/feeds.html
parentadding comments and tests (diff)
downloadnewspipe-4f03d7b324360f718780fcbdfc359f60896fead4.tar.gz
newspipe-4f03d7b324360f718780fcbdfc359f60896fead4.tar.bz2
newspipe-4f03d7b324360f718780fcbdfc359f60896fead4.zip
accelerating the feeds page
Diffstat (limited to 'pyaggr3g470r/templates/feeds.html')
-rw-r--r--pyaggr3g470r/templates/feeds.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/feeds.html b/pyaggr3g470r/templates/feeds.html
index f0e674c9..4d4581d4 100644
--- a/pyaggr3g470r/templates/feeds.html
+++ b/pyaggr3g470r/templates/feeds.html
@@ -30,7 +30,7 @@
</td>
<td><a href="{{ url_for("feed.feed", feed_id=feed.id) }}" {% if feed.description %}title="{{ feed.description }}"{% endif %}>{{ feed.title }}</a></td>
<td><a href="{{ feed.site_link }}">{{ feed.site_link }}</a></td>
- <td>{{ feed.articles.count() }}</td>
+ <td>{{ article_count[feed.id] }}</td>
<td>
<a href="{{ url_for("home", feed_id=feed.id, filter_="all") }}"><i class="glyphicon glyphicon-th-list" title="{{ _('Articles') }}"></i></a>
<a href="{{ url_for("feed.form", feed_id=feed.id) }}"><i class="glyphicon glyphicon-edit" title="{{ _('Edit this feed') }}"></i></a>
bgstack15