From 83f3c20fa76ff383d069ca866cb2eee92fe0c9c8 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Mon, 29 May 2017 23:15:17 +0200 Subject: It is now possible to filter bookmarks by tags. --- src/web/templates/bookmarks.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/web/templates') 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 @@

{{ bookmark.description }}
-
{{ " ".join(bookmark.tags_proxy) }}
+
{% for tag in bookmark.tags %}{{ tag.text }}{% endfor %}
{{ bookmark.time | datetime }} {% if current_user.is_authenticated %} edit -- cgit