From 2b044bd30af3fccae788dfdc6f736397729a3167 Mon Sep 17 00:00:00 2001 From: nfa Date: Thu, 23 Dec 2021 13:51:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E6=96=87=E4=BB=B6=E8=87=B3?= =?UTF-8?q?=20'env/templates'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- env/templates/chartindex.html | 107 ++++++++++++++++++++++++++++++++++ env/templates/sysmanager.html | 95 ++++++++++++++++++++++++++++++ 2 files changed, 202 insertions(+) create mode 100644 env/templates/chartindex.html create mode 100644 env/templates/sysmanager.html diff --git a/env/templates/chartindex.html b/env/templates/chartindex.html new file mode 100644 index 0000000..f0428d3 --- /dev/null +++ b/env/templates/chartindex.html @@ -0,0 +1,107 @@ +{% extends "admin/base_site.html" %} +{% load static %} +{% block extrahead %} + + + + + + +{% endblock %} +{% block content %} + +
+ +
+
+ {% csrf_token %} + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+
+
+ +
+ + + + +{% endblock %} \ No newline at end of file diff --git a/env/templates/sysmanager.html b/env/templates/sysmanager.html new file mode 100644 index 0000000..1c68815 --- /dev/null +++ b/env/templates/sysmanager.html @@ -0,0 +1,95 @@ +{% extends "admin/base_site.html" %} +{% load static %} +{% block extrahead %} + + + + +{% endblock %} +{% block content %} + +{% load to_seprate %} +
+ +
+

请选择并填写管理命令

+
+ {% csrf_token %} + + + + + + + + + + +
+ + + + + + {% if spot %} + + {% else %} + + {% endif %} + + + + + + + + + + + + + +
+ +
+
+
+
+

当前等待执行命令

+
    + {% for c in cmdlist %} +
  • {{ c|to_seprate }}
  • + {% endfor %} +
+
+
+{% endblock %} \ No newline at end of file