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

18 lines
450 B
HTML

{% extends "extends/offcanvas.html" %}
{% load crispy_forms_tags %}
{% load i18n %}
{% block title %}{% translate 'Restore' %}{% endblock %}
{% block body %}
<div class="tw:container tw:p-3">
<form hx-post="{% url 'restore_form' %}"
hx-target="#generic-offcanvas"
id="restore-form"
enctype="multipart/form-data"
class="show-loading tw:px-1">
{% crispy form %}
</form>
</div>
{% endblock %}