diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-05-26 09:31:39 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-05-26 09:31:39 +0200 |
commit | aea01678fe2f5c22c62d7c1f8234d91aa38fe7b4 (patch) | |
tree | 60753f06e5047c3af1fd320808d16b985f58b46f /src/web/templates | |
parent | Updated translations. (diff) | |
download | newspipe-aea01678fe2f5c22c62d7c1f8234d91aa38fe7b4.tar.gz newspipe-aea01678fe2f5c22c62d7c1f8234d91aa38fe7b4.tar.bz2 newspipe-aea01678fe2f5c22c62d7c1f8234d91aa38fe7b4.zip |
Delete all bookmarks.
Diffstat (limited to 'src/web/templates')
-rw-r--r-- | src/web/templates/management.html | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/src/web/templates/management.html b/src/web/templates/management.html index 2f5eda6f..61eafe75 100644 --- a/src/web/templates/management.html +++ b/src/web/templates/management.html @@ -2,11 +2,21 @@ {% block content %} <div class="container"> <div class="well"> - <h1>{{ _('Your subscriptions') }}</h1> - <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> - <p>{{ _('You have') }} {{ nb_categories }} <a href="{{ url_for("categories.list_")}}">{{ _('categories') }}</a>.</p> - <a href="{{ url_for("articles.expire", weeks=10) }}" class="btn btn-default" onclick="return confirm('{{ _('You are going to delete old articles.') }}');">{{ _('Delete articles older than 10 weeks') }}</a> + <div class="row"> + <div class="col-md-6"> + <h1>{{ _('Your subscriptions') }}</h1> + <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> + <p>{{ _('You have') }} {{ nb_categories }} <a href="{{ url_for("categories.list_")}}">{{ _('categories') }}</a>.</p> + <a href="{{ url_for("articles.expire", weeks=10) }}" class="btn btn-default" onclick="return confirm('{{ _('You are going to delete old articles.') }}');">{{ _('Delete articles older than 10 weeks') }}</a> + </div> + <div class="col-md-6"> + <h1>{{ _('Your bookmarks') }}</h1> + <p>{{ _('You have') }} {{ nb_bookmarks }} <a href="{{ url_for("bookmarks.list")}}">{{ _('bookmarks') }}</a>.</p> + <a href="{{ url_for("bookmarks.delete_all") }}" class="btn btn-default" onclick="return confirm('{{ _('You are going to delete all bookmarks.') }}');">{{ _('Delete all bookmarks') }}</a> + </div> + </div> + </div> <div class="well"> <h1 id="import">{{ _('OPML import/export') }}</h1> |