aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/unread.html
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel+bitbucket@gmail.com>2014-06-12 07:23:48 +0200
committerCédric Bonhomme <kimble.mandel+bitbucket@gmail.com>2014-06-12 07:23:48 +0200
commit71b0130c7f231d4f2a922f23ad02c03a074b2f12 (patch)
tree88226ddc308f24eb102cc9a88c0cbcfb9f1d2dfa /pyaggr3g470r/templates/unread.html
parentfixes #7 (diff)
parentreimplementing the unread count in left menu (diff)
downloadnewspipe-71b0130c7f231d4f2a922f23ad02c03a074b2f12.tar.gz
newspipe-71b0130c7f231d4f2a922f23ad02c03a074b2f12.tar.bz2
newspipe-71b0130c7f231d4f2a922f23ad02c03a074b2f12.zip
Merged in jaesivsm/pyaggr3g470r/ui_tweak (pull request #3)
Redoing home page with a table a few less SQL queries
Diffstat (limited to 'pyaggr3g470r/templates/unread.html')
-rw-r--r--pyaggr3g470r/templates/unread.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/pyaggr3g470r/templates/unread.html b/pyaggr3g470r/templates/unread.html
index 6c5c5d08..cdfb0dfe 100644
--- a/pyaggr3g470r/templates/unread.html
+++ b/pyaggr3g470r/templates/unread.html
@@ -16,7 +16,8 @@
<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>
+ <a href="/mark_as/read/feed/{{ feed.id }}"><i class="glyphicon glyphicon-check" title="{{ _('Mark all feed as read') }}"></i></a>
+ <a href="/mark_as/unread/feed/{{ feed.id }}"><i class="glyphicon glyphicon-unchecked" title="{{ _('Mark all feed as unread') }}"></i></a>
<h3>{{ feed.articles.all()|length }} {{ _('unread articles') }}.</h3>
</div>
</div>
bgstack15