aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-29 23:17:07 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-29 23:17:07 +0200
commitf654e38b302114690efcb0aae70aee22c599ace9 (patch)
treea4b39d43ebf68428759fafcd168bff467cf9f46b /src
parentIt is now possible to filter bookmarks by tags. (diff)
downloadnewspipe-f654e38b302114690efcb0aae70aee22c599ace9.tar.gz
newspipe-f654e38b302114690efcb0aae70aee22c599ace9.tar.bz2
newspipe-f654e38b302114690efcb0aae70aee22c599ace9.zip
Restore space between tags.
Diffstat (limited to 'src')
-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 7ccddeed..71a8056d 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>{% for tag in bookmark.tags %}<a href="{{ url_for('bookmarks.list_', tag=tag.text) }}">{{ tag.text }}</a>{% endfor %}</div>
+ <div>{% for tag in bookmark.tags %}<a href="{{ url_for('bookmarks.list_', tag=tag.text) }}">{{ tag.text }}&nbsp;</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