diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-05-29 23:17:07 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2017-05-29 23:17:07 +0200 |
commit | f654e38b302114690efcb0aae70aee22c599ace9 (patch) | |
tree | a4b39d43ebf68428759fafcd168bff467cf9f46b /src/web | |
parent | It is now possible to filter bookmarks by tags. (diff) | |
download | newspipe-f654e38b302114690efcb0aae70aee22c599ace9.tar.gz newspipe-f654e38b302114690efcb0aae70aee22c599ace9.tar.bz2 newspipe-f654e38b302114690efcb0aae70aee22c599ace9.zip |
Restore space between tags.
Diffstat (limited to 'src/web')
-rw-r--r-- | src/web/templates/bookmarks.html | 2 |
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 }} </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> |