summaryrefslogtreecommitdiffstats
path: root/ogcp/templates
diff options
context:
space:
mode:
authorJavier Sánchez Parra <jsanchez@soleta.eu>2022-01-20 11:21:59 +0100
committerJavier Sánchez Parra <jsanchez@soleta.eu>2022-01-20 12:54:57 +0100
commitddd46295717bd63bd31eadb506a93a66c45c0b02 (patch)
tree4c73a973fee008ef7eeb3859b508d4e59d309933 /ogcp/templates
parent20a89ce96535508974a4c9315c062928bea17a85 (diff)
Adds confirmation page to power off clients
This commit adds an extra view to ensure users do not power off clients accidentally. ogcp GET /poweroff returns the confirmation page and POST /poweroff builds and sends the request to ogServer. It also includes Spanish translation of the new strings.
Diffstat (limited to 'ogcp/templates')
-rw-r--r--ogcp/templates/actions/poweroff.html25
-rw-r--r--ogcp/templates/commands.html2
2 files changed, 26 insertions, 1 deletions
diff --git a/ogcp/templates/actions/poweroff.html b/ogcp/templates/actions/poweroff.html
new file mode 100644
index 0000000..2ff9440
--- /dev/null
+++ b/ogcp/templates/actions/poweroff.html
@@ -0,0 +1,25 @@
+{% extends 'commands.html' %}
+{% import "bootstrap/wtf.html" as wtf %}
+
+{% block content %}
+
+{% set ip_list = form.ips.data.split(' ') %}
+{% set ip_count = ip_list | length %}
+<h1 class="m-5">
+ {{ _('Power off %(ip_count)d client(s)', ip_count=ip_count) }}
+</h1>
+
+<ul class="list-group mx-5 list-group-horizontal-sm">
+{% for ip in ip_list %}
+ <li class="list-group-item flex-fill list-group-item-info">{{ ip }}</li>
+{% endfor %}
+</ul>
+
+{{ wtf.quick_form(form,
+ action=url_for('action_poweroff'),
+ method='post',
+ button_map={'submit': 'primary'},
+ extra_classes="mx-5") }}
+
+{% endblock %}
+
diff --git a/ogcp/templates/commands.html b/ogcp/templates/commands.html
index 02fe5c2..b06574a 100644
--- a/ogcp/templates/commands.html
+++ b/ogcp/templates/commands.html
@@ -19,7 +19,7 @@
<input class="btn btn-light" type="submit" value="{{ _('Power on (WoL)') }}"
form="scopesForm" formaction="{{ url_for('action_wol') }}" formmethod="get">
<input class="btn btn-light" type="submit" value="{{ _('Power off') }}"
- form="scopesForm" formaction="{{ url_for('action_poweroff') }}" formmethod="post">
+ form="scopesForm" formaction="{{ url_for('action_poweroff') }}" formmethod="get">
<input class="btn btn-light" type="submit" value="{{ _('Reboot') }}"
form="scopesForm" formaction="{{ url_for('action_reboot') }}" formmethod="post">
<input class="btn btn-light" type="submit" value="{{ _('Refresh') }}"