From 3211b6321e9c2f8c3b26716f120c1ca3c469fd31 Mon Sep 17 00:00:00 2001 From: mst Date: Tue, 26 Nov 2024 15:25:25 +0300 Subject: [PATCH] add import/export page template --- templates/admin/categories/import.html | 79 ++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 templates/admin/categories/import.html diff --git a/templates/admin/categories/import.html b/templates/admin/categories/import.html new file mode 100644 index 0000000..4e5b051 --- /dev/null +++ b/templates/admin/categories/import.html @@ -0,0 +1,79 @@ +{% extends 'admin/base.html' %} +{% block _title %}Import/Export{% endblock %} +{% set import_link = 'active' %} +{% block _content %} +

Import/Export

+

Import

+
+
+ + +

Note: Retrospring exports are not supported yet

+
+ +
+ {# +
+
+
+ + + +
+ +
+ #} +

Export

+
+
+ +
+ {% if exports %} +
+ + + + + + + + + {% for export in exports %} + + + + + {% endfor %} + +
DateActions
{{ export.timestamp }} + Download + +
+
+ {% else %} +

No exports created yet

+ {% endif %} +
+{% endblock %} +{% block _scripts %} + +{% endblock %}