aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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