Files
linkding/bookmarks/templates/bookmarks/edit.html
2025-08-16 06:20:07 +02:00

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 %}