feat: first batch of work

This commit is contained in:
Herculino Trotta
2025-11-01 03:15:44 -03:00
parent e600d87968
commit a63367a772
175 changed files with 3433 additions and 2245 deletions

View File

@@ -5,8 +5,8 @@
{% 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">
<div class="container p-3">
<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>

View File

@@ -5,12 +5,12 @@
{% block title %}{% translate 'Restore' %}{% endblock %}
{% block body %}
<div class="tw:container tw:p-3">
<div class="container 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">
class="show-loading px-1">
{% crispy form %}
</form>
</div>