diff options
author | Cédric Bonhomme <kimble.mandel+bitbucket@gmail.com> | 2014-06-12 07:23:48 +0200 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel+bitbucket@gmail.com> | 2014-06-12 07:23:48 +0200 |
commit | 71b0130c7f231d4f2a922f23ad02c03a074b2f12 (patch) | |
tree | 88226ddc308f24eb102cc9a88c0cbcfb9f1d2dfa /pyaggr3g470r/templates/unread.html | |
parent | fixes #7 (diff) | |
parent | reimplementing the unread count in left menu (diff) | |
download | newspipe-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.html | 3 |
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> |