From 819492791fbf8478f4f63a637f6645d0a9444579 Mon Sep 17 00:00:00 2001 From: Waldek Date: Tue, 18 May 2021 17:19:15 +0200 Subject: [PATCH] Add files via upload --- templates/bridge_table.html | 55 +++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 templates/bridge_table.html diff --git a/templates/bridge_table.html b/templates/bridge_table.html new file mode 100644 index 0000000..3ddbfb0 --- /dev/null +++ b/templates/bridge_table.html @@ -0,0 +1,55 @@ +
+ .: Bridge status :.  + {% if _table['BRIDGES']|length == 0 and _table['SETUP']['BRIDGES'] != False %} + + + + +
Waiting for data from the Server ...
+{% elif _table['SETUP']['BRIDGES'] == False %} + + + + +
BRIDGES display is disabled by setup
+{% else %} +{% for _bridge, _bridge_data in _table['BRIDGES'].items() %} + + + + + + + + + + + +

{{ _bridge }}

+ + + + + + + + + + + {% for system, _system_data in _table['BRIDGES'][_bridge].items() %} + + + + + + + + + + + {% endfor %} +
SystemSlotTG#StatusTimeoutTimeout ActionConnect TG#Disconnect TG#
{{ system }}{{ _table['BRIDGES'][_bridge][system]['TS'] }}{{ _table['BRIDGES'][_bridge][system]['TGID'] }}{{ _table['BRIDGES'][_bridge][system]['ACTIVE'] }}{{ _table['BRIDGES'][_bridge][system]['EXP_TIME'] }}{{ _table['BRIDGES'][_bridge][system]['TO_ACTION'] }}{{ _table['BRIDGES'][_bridge][system]['TRIG_ON'] }}{{ _table['BRIDGES'][_bridge][system]['TRIG_OFF'] }}
+{% endfor %} + {% endif %} +
+