aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/layout.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-08-05 15:24:44 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-08-05 15:24:44 +0200
commit124650a26bb02540a9d00cc2195d0dd61c82c4d7 (patch)
tree587ad0b7972fad284689f22cd2513854887d4803 /pyaggr3g470r/templates/layout.html
parentSecure back redirects with WTForms. (diff)
downloadnewspipe-124650a26bb02540a9d00cc2195d0dd61c82c4d7.tar.gz
newspipe-124650a26bb02540a9d00cc2195d0dd61c82c4d7.tar.bz2
newspipe-124650a26bb02540a9d00cc2195d0dd61c82c4d7.zip
It is now possible to mark articles as read only older than 1 day or 10 days.
Diffstat (limited to 'pyaggr3g470r/templates/layout.html')
-rw-r--r--pyaggr3g470r/templates/layout.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/pyaggr3g470r/templates/layout.html b/pyaggr3g470r/templates/layout.html
index 93d36096..9b767649 100644
--- a/pyaggr3g470r/templates/layout.html
+++ b/pyaggr3g470r/templates/layout.html
@@ -67,6 +67,8 @@
<a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ _('Feed') }} <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="{{ url_for("feeds.update", action="read") }}">{{ _('Mark all as read') }}</a></li>
+ <li><a href="{{ url_for("feeds.update", action="read", nb_days="1") }}">{{ _('Mark all as read older than yesterday') }}</a></li>
+ <li><a href="{{ url_for("feeds.update", action="read", nb_days="10") }}">{{ _('Mark all as read older than 10 days') }}</a></li>
<li role="presentation" class="divider"></li>
<li><a href="{{ url_for("inactives") }}">{{ _('Inactive') }}</a></li>
<li><a href="{{ url_for("history") }}">{{ _('History') }}</a></li>
bgstack15