aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-31 14:47:21 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-31 14:47:21 +0200
commit7509f45a3481d3acc37d82e018737762fe215ee4 (patch)
tree0e9a16e4d7f8433eb359ef60d6948664b4a90af6 /src
parentImproved UI for bookmarks. It is now possible to search bookmarks through tit... (diff)
downloadnewspipe-7509f45a3481d3acc37d82e018737762fe215ee4.tar.gz
newspipe-7509f45a3481d3acc37d82e018737762fe215ee4.tar.bz2
newspipe-7509f45a3481d3acc37d82e018737762fe215ee4.zip
Display the selected tags/search term.
Diffstat (limited to 'src')
-rw-r--r--src/web/templates/bookmarks.html10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/web/templates/bookmarks.html b/src/web/templates/bookmarks.html
index 33a35252..66c6df52 100644
--- a/src/web/templates/bookmarks.html
+++ b/src/web/templates/bookmarks.html
@@ -16,7 +16,15 @@
</div>
<br />
<div class="row">
- <div class="col-md-12 text-right">
+ <div class="col-md-6">
+ {% if tag %}
+ <span class="glyphicon glyphicon-tags" aria-hidden="true"></span>&nbsp;&nbsp;{{ tag }}
+ {% endif %}
+ {% if query %}
+ <span class="glyphicon glyphicon-search" aria-hidden="true"></span>&nbsp;&nbsp;{{ query }}
+ {% endif %}
+ </div>
+ <div class="col-md-6 text-right">
<form method="GET">
<div class="form-inline">
<input type="text" name="query" class="form-control" />
bgstack15