diff options
author | Javier Sánchez Parra <jsanchez@soleta.eu> | 2021-12-15 11:28:16 +0100 |
---|---|---|
committer | Javier Sánchez Parra <jsanchez@soleta.eu> | 2021-12-16 17:17:07 +0100 |
commit | e07c8afcce3f16739bbf9e8c52405f327f367977 (patch) | |
tree | 3c76acfcfacdb2ec62e7eeadc1190107ce494d54 /ogcp/templates | |
parent | 695c19f86ec361db8b316358ac9a0609ecfb020f (diff) |
Add set ogLive to commands
This action is related to /oglive in ogServer's API. Allows changing the
ogLive for a set of given clients, previously selected in the /commands
view.
Diffstat (limited to 'ogcp/templates')
-rw-r--r-- | ogcp/templates/actions/oglive.html | 22 | ||||
-rw-r--r-- | ogcp/templates/commands.html | 2 |
2 files changed, 24 insertions, 0 deletions
diff --git a/ogcp/templates/actions/oglive.html b/ogcp/templates/actions/oglive.html new file mode 100644 index 0000000..f35b371 --- /dev/null +++ b/ogcp/templates/actions/oglive.html @@ -0,0 +1,22 @@ +{% 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">Changing ogLive of {{ip_count}} {%if ip_count > 1%}computers{% else %}computer{% endif %}</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_oglive'), + method='post', + button_map={'ok': 'primary'}, + extra_classes="m-5") }} + +{% endblock %} diff --git a/ogcp/templates/commands.html b/ogcp/templates/commands.html index df84ab0..02fe5c2 100644 --- a/ogcp/templates/commands.html +++ b/ogcp/templates/commands.html @@ -40,6 +40,8 @@ form="scopesForm" formaction="{{ url_for('action_image_create') }}" formmethod="get"> <input class="btn btn-light" type="submit" value="{{ _('Set boot mode') }}" form="scopesForm" formaction="{{ url_for('action_mode') }}" formmethod="get"> + <input class="btn btn-light" type="submit" value="{{ _('Set ogLive') }}" + form="scopesForm" formaction="{{ url_for('action_oglive') }}" formmethod="get"> <input class="btn btn-light" type="submit" value="{{ _('Log') }}" form="scopesForm" formaction="{{ url_for('action_legacy_log') }}" formmethod="get"> <input class="btn btn-light" type="submit" value="{{ _('Real time log') }}" |