aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/unread.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-12 16:47:52 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-04-12 16:47:52 +0200
commite7056b3e9ce8d733348259d6e33dec36521f3984 (patch)
treeaedc1304b523e34616ed495914f9956e70f9d23b /pyaggr3g470r/templates/unread.html
parentThe /home page is now loading faster. (diff)
downloadnewspipe-e7056b3e9ce8d733348259d6e33dec36521f3984.tar.gz
newspipe-e7056b3e9ce8d733348259d6e33dec36521f3984.tar.bz2
newspipe-e7056b3e9ce8d733348259d6e33dec36521f3984.zip
Improvements of the feedgetter module.
Diffstat (limited to 'pyaggr3g470r/templates/unread.html')
-rw-r--r--pyaggr3g470r/templates/unread.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/pyaggr3g470r/templates/unread.html b/pyaggr3g470r/templates/unread.html
index 1a586435..e0ffd2dd 100644
--- a/pyaggr3g470r/templates/unread.html
+++ b/pyaggr3g470r/templates/unread.html
@@ -13,10 +13,10 @@
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h1>{{ feed.title|safe }}</h1>
- <a href="/articles/{{ feed.oid }}/100"><i class="glyphicon glyphicon-th-list" title="More articles"></i></a>
- <a href="/feed/{{ feed.oid }}"><i class="glyphicon glyphicon-info-sign" title="Details"></i></a>
- <a href="/edit_feed/{{ feed.oid }}"><i class="glyphicon glyphicon-edit" title="Edit this feed"></i></a>
- <a href="/mark_as_read/{{ feed.oid }}"><i class="glyphicon glyphicon-check" title="Mark all as read"></i></a>
+ <a href="/articles/{{ feed.id }}/100"><i class="glyphicon glyphicon-th-list" title="More articles"></i></a>
+ <a href="/feed/{{ feed.id }}"><i class="glyphicon glyphicon-info-sign" title="Details"></i></a>
+ <a href="/edit_feed/{{ feed.id }}"><i class="glyphicon glyphicon-edit" title="Edit this feed"></i></a>
+ <a href="/mark_as_read/{{ feed.id }}"><i class="glyphicon glyphicon-check" title="Mark all as read"></i></a>
<h3>{{ feed.articles.all()|length }} unread articles.</h3>
</div>
</div>
bgstack15