aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-24 00:02:25 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-05-24 00:02:25 +0200
commit3b7ff7f8c69a2658ed46ca90a6719c031866db6b (patch)
treeb5717c0521bc5ecab0413d7f0eab4488a5eacaa0 /src/web/templates
parentAdded a link in the main menu to the list of bookmarks. (diff)
downloadnewspipe-3b7ff7f8c69a2658ed46ca90a6719c031866db6b.tar.gz
newspipe-3b7ff7f8c69a2658ed46ca90a6719c031866db6b.tar.bz2
newspipe-3b7ff7f8c69a2658ed46ca90a6719c031866db6b.zip
It is now possible to delete a bookmark.
Diffstat (limited to 'src/web/templates')
-rw-r--r--src/web/templates/bookmarks.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/web/templates/bookmarks.html b/src/web/templates/bookmarks.html
index 6b727a16..699d7e62 100644
--- a/src/web/templates/bookmarks.html
+++ b/src/web/templates/bookmarks.html
@@ -13,6 +13,7 @@
<div class="text-muted">{{ bookmark.description }}</div>
{{ " ".join(bookmark.tags_proxy) }}
<a href="{{ url_for('bookmark.form', bookmark_id=bookmark.id) }}">edit</a>
+ <a href="{{ url_for('bookmark.delete', bookmark_id=bookmark.id) }}">delete</a>
</p>
</a>
</li>
bgstack15