From bffe932d312bfb8e60dbc74b4bd47ea5fa137e30 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Tue, 23 Jun 2020 16:44:06 +0200 Subject: fixed a minor issue in the bookmarks template concerning the list of tags about a bookmark --- newspipe/templates/bookmarks.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newspipe/templates/bookmarks.html b/newspipe/templates/bookmarks.html index 0f6e02c4..bdf9168c 100644 --- a/newspipe/templates/bookmarks.html +++ b/newspipe/templates/bookmarks.html @@ -58,7 +58,7 @@

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