mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-22 09:29:30 +01:00
18 lines
437 B
HTML
18 lines
437 B
HTML
{% extends "extends/offcanvas.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% translate 'Restore' %}{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="container">
|
|
<form hx-post="{% url 'restore_form' %}"
|
|
hx-target="#generic-offcanvas"
|
|
id="restore-form"
|
|
enctype="multipart/form-data"
|
|
class="show-loading px-1">
|
|
{% crispy form %}
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|