From 3751379f1e9a4c215fb6eb898b4ccc67659b9ace Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 21:51:50 +0700 Subject: initial commit 2 --- addons/hw_posbox_homepage/views/homepage.html | 152 ++++++++++++++++++++++++++ 1 file changed, 152 insertions(+) create mode 100644 addons/hw_posbox_homepage/views/homepage.html (limited to 'addons/hw_posbox_homepage/views/homepage.html') diff --git a/addons/hw_posbox_homepage/views/homepage.html b/addons/hw_posbox_homepage/views/homepage.html new file mode 100644 index 00000000..482c5451 --- /dev/null +++ b/addons/hw_posbox_homepage/views/homepage.html @@ -0,0 +1,152 @@ +{% extends "layout.html" %} +{% block head %} + + +{% endblock %} +{% block content %} +

Your IoT Box is up and running

+ + + + + + + + + + + + + + + + + + + + + + + + + + {% if server_status != "Not Configured" %} + + + + + {% endif %} + + + + +
Name {{ hostname }} configure
Version {{ version }} update
IP Address{{ ip }}
Mac Address {{ mac }}
Network{{ network_status }} configure wifi
Server{{ server_status }}configure
Six payment terminal{{ six_terminal }} configure
IOT Device +
+ {% if iot_device_status|length == 0 %} + No Device Found + {% endif %} + {% for iot_devices in iot_device_status|groupby('type') %} +
+
{{ iot_devices.grouper|capitalize }}s
+
+ {% for device in iot_devices.list %} +
+ {{ device['name'] }} +
{{ device['identifier'] }}
+
+ {% endfor %} +
+
+ {% endfor %} +
+
handlers list
+
+
+ POS Display + Remote Debug + Printers server + {% if server_status != "Not Configured" %} + Credential + {% endif %} +
+{% endblock %} -- cgit v1.2.3