Skip to content
Snippets Groups Projects
Commit 000c18e9 authored by Your Name's avatar Your Name
Browse files

added standby to webui

parent b7458a7b
Branches
No related merge requests found
......@@ -302,6 +302,8 @@ def send_cmd():
print(client.send_cmd("GENERAL", "START"))
elif web_form.get('stop') == "STOP":
print(client.send_cmd("GENERAL", "STOP"))
elif web_form.get('standby') == "STANDBY":
print(client.send_cmd("GENERAL", "STANDBY"))
#elif web_form.get('reset') == "RESET":
# print(client.send_cmd("GENERAL", "RESET"))
elif web_form.get('export') == "EXPORT":
......
......@@ -103,6 +103,7 @@
<div class = "controls py-1 ml-auto mr-auto">
<input type="submit" name="start" value="START" onclick="cmdNotification(this)" class="lockable sb-nav-button py-1 mb-1" disabled></input>
<input type="submit" name="stop" value="STOP" onclick="cmdNotification(this)" class="lockable sb-nav-button py-1 mb-1" disabled></input>
<input type="submit" name="standby" value="STANDBY" onclick="cmdNotification(this)" class="lockable sb-nav-button py-1 mb-1" disabled></input>
<input type="submit" name="export" value="EXPORT" onclick="cmdNotification(this)" class="lockable sb-nav-button py-1 mb-1" disabled></input>
</div>
</form>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment