aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-01-05 14:25:23 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-01-05 14:25:23 +0100
commit4cd160dbe093b82724faab6de1169a1493d3cf69 (patch)
tree1f488b2347ba25ee9ee24b2b06d2b3e97e6e8506 /src
parentbug fix (diff)
downloadnewspipe-4cd160dbe093b82724faab6de1169a1493d3cf69.tar.gz
newspipe-4cd160dbe093b82724faab6de1169a1493d3cf69.tar.bz2
newspipe-4cd160dbe093b82724faab6de1169a1493d3cf69.zip
Updated the link to add a feed in the /management page.
Diffstat (limited to 'src')
-rw-r--r--src/web/templates/management.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/management.html b/src/web/templates/management.html
index 72259551..ac4f3a4a 100644
--- a/src/web/templates/management.html
+++ b/src/web/templates/management.html
@@ -3,7 +3,7 @@
<div class="container">
<div class="well">
<h1>{{ _('Your subscriptions') }}</h1>
- <p>{{ _('You are subscribed to') }} {{ nb_feeds }} <a href="/feeds">{{ _('feeds') }}</a>. {{ _('Add a') }} <a href="{{ url_for("feed.form") }}">{{ _('feed') }}</a>.</p>
+ <p>{{ _('You are subscribed to') }} {{ nb_feeds }} <a href="/feeds">{{ _('feeds') }}</a>. <a href="{{ url_for("feed.form") }}">{{ _('Add') }}</a> {{ _('a feed') }}.</p>
<p>{{ nb_articles }} {{ _('articles are stored in the database with') }} {{ nb_unread_articles }} {{ _('unread articles') }}.</p>
<a href="/expire_articles?weeks=10" class="btn btn-default" onclick="return confirm('{{ _('You are going to delete old articles.') }}');">{{ _('Delete articles older than 10 weeks') }}</a>
</div>
bgstack15