aboutsummaryrefslogtreecommitdiff
path: root/src/web
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-23 23:48:06 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-23 23:48:06 +0200
commite1f20da37f05548150c4b58a56ee285a3aa19185 (patch)
tree81be3d537fbc711273d49592875b7853aec192fd /src/web
parentfixed migration script (diff)
downloadnewspipe-e1f20da37f05548150c4b58a56ee285a3aa19185.tar.gz
newspipe-e1f20da37f05548150c4b58a56ee285a3aa19185.tar.bz2
newspipe-e1f20da37f05548150c4b58a56ee285a3aa19185.zip
Added a link in the main menu to the list of bookmarks.
Diffstat (limited to 'src/web')
-rw-r--r--src/web/templates/layout.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html
index 202f6854..26cd91b7 100644
--- a/src/web/templates/layout.html
+++ b/src/web/templates/layout.html
@@ -47,6 +47,15 @@
{% endif %}
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
+ <div><span class="glyphicon glyphicon-bookmark"></span></div>
+ </a>
+ <ul class="dropdown-menu">
+ <li><a href="{{ url_for('bookmarks.list') }}">{{ _('Your bookmarks') }}</a></li>
+ <li><a href="{{ url_for('bookmark.form') }}">{{ _('Add a new bookmark') }}</a></li>
+ </ul>
+ </li>
+ <li class="dropdown">
+ <a href="#" class="dropdown-toggle" data-toggle="dropdown">
<div><span class="glyphicon glyphicon-plus-sign"></span>&nbsp;{{ _('Add a new feed') }}</div>
</a>
<ul class="dropdown-menu">
bgstack15