mirror of
https://github.com/sissbruecker/linkding.git
synced 2026-02-28 06:53:12 +08:00
22 lines
610 B
HTML
22 lines
610 B
HTML
{% extends 'bookmarks/layout.html' %}
|
|
|
|
{% block head %}
|
|
{% with page_title="Edit bookmark - Linkding" %}
|
|
{{ block.super }}
|
|
{% endwith %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="bookmarks-form-page">
|
|
<main aria-labelledby="main-heading">
|
|
<div class="section-header">
|
|
<h1 id="main-heading">Edit bookmark</h1>
|
|
</div>
|
|
<form action="{% url 'linkding:bookmarks.edit' bookmark_id %}?return_url={{ return_url|urlencode }}" method="post"
|
|
novalidate ld-form-submit>
|
|
{% include 'bookmarks/form.html' %}
|
|
</form>
|
|
</main>
|
|
</div>
|
|
{% endblock %}
|