mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-22 09:29:30 +01:00
14 lines
387 B
HTML
14 lines
387 B
HTML
{% extends "extends/offcanvas.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% translate 'Export' %}{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="container">
|
|
<form hx-post="{% url 'export_form' %}" hx-ext="htmx-download" hx-swap="none" id="export-form" class="show-loading px-1" target="_blank">
|
|
{% crispy form %}
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|