Files
WYGIWYH/app/templates/export_app/fragments/export.html
2025-10-28 14:13:30 -03:00

14 lines
400 B
HTML

{% extends "extends/offcanvas.html" %}
{% load crispy_forms_tags %}
{% load i18n %}
{% block title %}{% translate 'Export' %}{% endblock %}
{% block body %}
<div class="tw:container tw:p-3">
<form hx-post="{% url 'export_form' %}" hx-ext="htmx-download" hx-swap="none" id="export-form" class="show-loading tw:px-1" target="_blank">
{% crispy form %}
</form>
</div>
{% endblock %}