From 879427aa740f399aecd31c0e12909e6f39705f5e Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Mon, 13 Feb 2017 15:27:13 +0100 Subject: wip --- src/web/templates/bookmarks.html | 2 +- src/web/templates/edit_bookmark.html | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) (limited to 'src/web/templates') diff --git a/src/web/templates/bookmarks.html b/src/web/templates/bookmarks.html index 9e6f0ab1..fc0e3aaa 100644 --- a/src/web/templates/bookmarks.html +++ b/src/web/templates/bookmarks.html @@ -6,7 +6,7 @@ {% for bookmark in bookmarks %}
  • {{ bookmark.href }}  - {{ ", ".join(bookmark.tags) }}  + {{ bookmark.tags }}  edit
  • {% endfor %} diff --git a/src/web/templates/edit_bookmark.html b/src/web/templates/edit_bookmark.html index 8dc0cba3..384e641c 100644 --- a/src/web/templates/edit_bookmark.html +++ b/src/web/templates/edit_bookmark.html @@ -13,6 +13,14 @@ {% for error in form.href.errors %} {{ error }}
    {% endfor %} +
    + +
    + {{ form.title(class_="form-control", size="100%") }} +
    + {% for error in form.title.errors %} {{ error }}
    {% endfor %} +
    +
    -- cgit