mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-26 11:21:24 +01:00
30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
{% extends "layouts/base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% translate 'Export and Restore' %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="row d-flex flex-row align-items-center justify-content-center my-5">
|
|
<div class="text-center w-auto mb-3">
|
|
<button class="btn btn-outline-success d-flex flex-column align-items-center justify-content-center p-3"
|
|
style="width: 100px; height: 100px;"
|
|
hx-get="{% url 'export_form' %}"
|
|
hx-target="#generic-offcanvas">
|
|
<i class="fa-solid fa-download mb-1"></i>
|
|
<span>{% trans 'Export' %}</span>
|
|
</button>
|
|
</div>
|
|
<div class="text-center w-auto mb-3">
|
|
<button class="btn btn-outline-primary d-flex flex-column align-items-center justify-content-center p-3"
|
|
style="width: 100px; height: 100px;"
|
|
hx-get="{% url 'restore_form' %}"
|
|
hx-target="#generic-offcanvas">
|
|
<i class="fa-solid fa-upload mb-1"></i>
|
|
<span>{% trans 'Restore' %}</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|