aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-01-04 19:33:05 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-01-04 19:33:05 +0100
commit9f577ae0b53a575d02b95565c9f6b93577eb6cbe (patch)
tree15374d7ca3b6bc02494e0c81ebc650d650fe9e27
parentSort by year. (diff)
downloadnewspipe-9f577ae0b53a575d02b95565c9f6b93577eb6cbe.tar.gz
newspipe-9f577ae0b53a575d02b95565c9f6b93577eb6cbe.tar.bz2
newspipe-9f577ae0b53a575d02b95565c9f6b93577eb6cbe.zip
Add the possibility to mark as read articles older than 5 days.
-rw-r--r--src/web/templates/layout.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html
index 3a10f2d6..b18077e2 100644
--- a/src/web/templates/layout.html
+++ b/src/web/templates/layout.html
@@ -68,6 +68,7 @@
<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="5") }}">{{ _('Mark all as read older than 5 days') }}</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>
bgstack15