aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-29 23:15:17 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-29 23:15:17 +0200
commit83f3c20fa76ff383d069ca866cb2eee92fe0c9c8 (patch)
tree52769a06701637218935fd2db777d4cfd796e562 /src/web/templates
parentMore human readable date format. (diff)
downloadnewspipe-83f3c20fa76ff383d069ca866cb2eee92fe0c9c8.tar.gz
newspipe-83f3c20fa76ff383d069ca866cb2eee92fe0c9c8.tar.bz2
newspipe-83f3c20fa76ff383d069ca866cb2eee92fe0c9c8.zip
It is now possible to filter bookmarks by tags.
Diffstat (limited to 'src/web/templates')
-rw-r--r--src/web/templates/bookmarks.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/bookmarks.html b/src/web/templates/bookmarks.html
index 3c4cc0db..7ccddeed 100644
--- a/src/web/templates/bookmarks.html
+++ b/src/web/templates/bookmarks.html
@@ -24,7 +24,7 @@
</h4>
<p class="list-group-item-text">
<div class="text-muted">{{ bookmark.description }}</div>
- <div>{{ " ".join(bookmark.tags_proxy) }}</div>
+ <div>{% for tag in bookmark.tags %}<a href="{{ url_for('bookmarks.list_', tag=tag.text) }}">{{ tag.text }}</a>{% endfor %}</div>
{{ bookmark.time | datetime }}
{% if current_user.is_authenticated %}
<a class="text-muted" href="{{ url_for('bookmark.form', bookmark_id=bookmark.id) }}">edit</a>
bgstack15