diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-05-31 14:47:21 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-05-31 14:47:21 +0200 |
commit | 7509f45a3481d3acc37d82e018737762fe215ee4 (patch) | |
tree | 0e9a16e4d7f8433eb359ef60d6948664b4a90af6 /src/web | |
parent | Improved UI for bookmarks. It is now possible to search bookmarks through tit... (diff) | |
download | newspipe-7509f45a3481d3acc37d82e018737762fe215ee4.tar.gz newspipe-7509f45a3481d3acc37d82e018737762fe215ee4.tar.bz2 newspipe-7509f45a3481d3acc37d82e018737762fe215ee4.zip |
Display the selected tags/search term.
Diffstat (limited to 'src/web')
-rw-r--r-- | src/web/templates/bookmarks.html | 10 |
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> {{ tag }} + {% endif %} + {% if query %} + <span class="glyphicon glyphicon-search" aria-hidden="true"></span> {{ 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" /> |