From 62b3afeeedfe054345f86093e2d243e956c1e3c9 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 26 Feb 2020 11:27:31 +0100 Subject: The project is now using Poetry. --- src/web/templates/edit_bookmark.html | 84 ------------------------------------ 1 file changed, 84 deletions(-) delete mode 100644 src/web/templates/edit_bookmark.html (limited to 'src/web/templates/edit_bookmark.html') diff --git a/src/web/templates/edit_bookmark.html b/src/web/templates/edit_bookmark.html deleted file mode 100644 index efd9d775..00000000 --- a/src/web/templates/edit_bookmark.html +++ /dev/null @@ -1,84 +0,0 @@ -{% extends "layout.html" %} -{% block content %} -
-
-

{{ action }}

-
- {{ form.hidden_tag() }} -
- -
- {{ form.href(class_="form-control", size="100%") }} -
- {% for error in form.href.errors %} {{ error }}
{% endfor %} -
- -
- -
- {{ form.title(class_="form-control", size="100%") }} -
- {% for error in form.title.errors %} {{ error }}
{% endfor %} -
- -
- -
- {{ form.description(class_="form-control", size="100%") }} -
- {% for error in form.description.errors %} {{ error }}
{% endfor %} -
- -
- -
- {{ form.tags(class_="form-control", size="100%") }} -
- {% for error in form.tags.errors %} {{ error }}
{% endfor %} -
- -
- -
-
- {{ form.shared(class_="checkbox", style="margin-left: 0px;") }} -
-
-
- -
- -
-
- {{ form.to_read(class_="checkbox", style="margin-left: 0px;") }} -
-
-
- -
-
- {{ form.submit(class_="btn btn-default") }} -
-
-
-
- {% if action == _('Add a new bookmark') %} -
-
-

{{ _('You can add a bookmark with a bookmarklet. Drag the following button to your browser bookmarks.') }}

- {{ _('Bookmark this page using Newspipe', bookmarklet='javascript:window.location="%s?href="+encodeURIComponent(document.location)+"&title="+document.title' % url_for('bookmark.bookmarklet', _external=True)) }} -
-
-
-

{{ _('Import bookmarks from Pinboard') }} (*.json)

- - -
- -
-
-
-
- {% endif %} -
-{% endblock %} -- cgit