diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-05-29 00:33:51 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-05-29 00:33:51 +0200 |
commit | 1e7f1434b062a81b46cd434bd30c309b7252c057 (patch) | |
tree | b0ce7dff08ada2c56a56d4b7cdf3923dc0655ef2 /src/web/templates/bookmarks.html | |
parent | updated layout (diff) | |
download | newspipe-1e7f1434b062a81b46cd434bd30c309b7252c057.tar.gz newspipe-1e7f1434b062a81b46cd434bd30c309b7252c057.tar.bz2 newspipe-1e7f1434b062a81b46cd434bd30c309b7252c057.zip |
added some fitlters for the bookmarks page
Diffstat (limited to 'src/web/templates/bookmarks.html')
-rw-r--r-- | src/web/templates/bookmarks.html | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/web/templates/bookmarks.html b/src/web/templates/bookmarks.html index 39528322..ee93253c 100644 --- a/src/web/templates/bookmarks.html +++ b/src/web/templates/bookmarks.html @@ -1,7 +1,17 @@ {% extends "layout.html" %} {% block content %} <div class="container"> - {{ pagination.info }} + <div class="row"> + <div class="col-md-6"> + {{ pagination.info }} + </div> + <div class="col-md-6 text-right"> + <a class="text-muted" href="{{ url_for('bookmarks.list_') }}">all</a> ⸱ + <a class="text-muted" href="{{ url_for('bookmarks.list_') + 'private' }}">private</a> ⸱ + <a class="text-muted" href="{{ url_for('bookmarks.list_') + 'public' }}">public</a> ⸱ + <a class="text-muted" href="{{ url_for('bookmarks.list_') + 'unread' }}">unread</a> + </div> + </div> {{ pagination.links }} <ul class="list-group"> {% for bookmark in bookmarks %} |