aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-23 21:36:12 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-23 21:36:12 +0200
commit5936c6aba13e682a0386564bf5798c19dae35819 (patch)
treebefa0f2deaab5f02e6851670f2f7166ed4616ca6 /src/web/templates
parentImproved display of bookmark's tags. And fixed some remainings merge related ... (diff)
downloadnewspipe-5936c6aba13e682a0386564bf5798c19dae35819.tar.gz
newspipe-5936c6aba13e682a0386564bf5798c19dae35819.tar.bz2
newspipe-5936c6aba13e682a0386564bf5798c19dae35819.zip
tags are lowercase
Diffstat (limited to 'src/web/templates')
-rw-r--r--src/web/templates/bookmarks.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/templates/bookmarks.html b/src/web/templates/bookmarks.html
index 40a7e7b9..6b727a16 100644
--- a/src/web/templates/bookmarks.html
+++ b/src/web/templates/bookmarks.html
@@ -10,8 +10,8 @@
<a href="{{ bookmark.href }}">{{ bookmark.title }}</a>
</h4>
<p class="list-group-item-text">
- {{ bookmark.description }}<br />
- {{ ", ".join(bookmark.tags_proxy) }}
+ <div class="text-muted">{{ bookmark.description }}</div>
+ {{ " ".join(bookmark.tags_proxy) }}
<a href="{{ url_for('bookmark.form', bookmark_id=bookmark.id) }}">edit</a>
</p>
</a>
bgstack15