aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-06-23 16:44:06 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-06-23 16:44:06 +0200
commitbffe932d312bfb8e60dbc74b4bd47ea5fa137e30 (patch)
treea016d4d4d903a769834f24f78dcc9c9fe7c5524f
parentchg: [template] in the template for popular feeds, select only feeds differen... (diff)
downloadnewspipe-bffe932d312bfb8e60dbc74b4bd47ea5fa137e30.tar.gz
newspipe-bffe932d312bfb8e60dbc74b4bd47ea5fa137e30.tar.bz2
newspipe-bffe932d312bfb8e60dbc74b4bd47ea5fa137e30.zip
fixed a minor issue in the bookmarks template concerning the list of tags about a bookmark
-rw-r--r--newspipe/templates/bookmarks.html2
1 files changed, 1 insertions, 1 deletions
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 @@
</h4>
<p class="list-group-item-text">
<div class="text-muted">{{ bookmark.description }}</div>
- <div>{% for tag in bookmark.tags %}<a href="{{ url_for('bookmarks.list_', tag=tag.text) }}">{{ tag.text }}&nbsp;</a>{% endfor %}</div>
+ <div>{% for tag in bookmark.tags %}<a href="{{ url_for('bookmarks.list_', tag=tag.text) }}">{{ tag.text }}</a>&nbsp;{% 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