Files
linkding/bookmarks/templates/bookmarks/edit.html
2019-06-29 01:00:52 +02:00

10 lines
239 B
HTML

{% extends 'bookmarks/layout.html' %}
{% load bookmarks %}
{% block content %}
<h2>New bookmark</h2>
<form action="{% url 'bookmarks:edit' bookmark_id %}" method="post">
{% bookmark_form form %}
</form>
{% endblock %}