From 22623a460298c01f0c17f7711c29f75ea4700907 Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Fri, 14 Jan 2022 11:12:07 +0100 Subject: [PATCH] snapshot template --- .../templates/inventory/upload_snapshot.html | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 ereuse_devicehub/templates/inventory/upload_snapshot.html diff --git a/ereuse_devicehub/templates/inventory/upload_snapshot.html b/ereuse_devicehub/templates/inventory/upload_snapshot.html new file mode 100644 index 00000000..c7580c11 --- /dev/null +++ b/ereuse_devicehub/templates/inventory/upload_snapshot.html @@ -0,0 +1,60 @@ +{% extends "ereuse_devicehub/base_site.html" %} +{% block main %} + +
+

{{ title }}

+ +
+ +
+
+
+ +
+
+ +
+
Upload Snapshot
+

Please select a file snapshot.

+ {% if form.form_errors %} +

+ {% for error in form.form_errors %} + {{ error }}
+ {% endfor %} +

+ {% endif %} +
+ +
+ {{ form.csrf_token }} + +
+ +
+ +
You can select multiple files Snapshots JSON.
+
+
+ +
+ Cancel + +
+
+ +
+ +
+ +
+ +
+
+
+
+{% endblock main %}