mirror of
https://github.com/sissbruecker/linkding.git
synced 2026-02-28 06:53:12 +08:00
28 lines
871 B
HTML
28 lines
871 B
HTML
{% extends 'shared/layout.html' %}
|
|
{% block head %}
|
|
{% with page_title="Edit bundle - Linkding" %}{{ block.super }}{% endwith %}
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div class="bundles-editor-page grid columns-md-1">
|
|
<main aria-labelledby="main-heading">
|
|
<div class="section-header">
|
|
<h1 id="main-heading">Edit bundle</h1>
|
|
</div>
|
|
{% include 'shared/messages.html' %}
|
|
<form id="bundle-form"
|
|
action="{% url 'linkding:bundles.edit' bundle.id %}"
|
|
method="post"
|
|
novalidate>
|
|
{% csrf_token %}
|
|
{% include 'bundles/form.html' %}
|
|
</form>
|
|
</main>
|
|
<aside class="col-2" aria-labelledby="preview-heading">
|
|
<div class="section-header">
|
|
<h2 id="preview-heading">Preview</h2>
|
|
</div>
|
|
{% include 'bundles/preview.html' %}
|
|
</aside>
|
|
</div>
|
|
{% endblock %}
|