diff options
author | Roberto Hueso Gómez <rhueso@soleta.eu> | 2020-10-27 11:15:19 +0100 |
---|---|---|
committer | Roberto Hueso Gómez <rhueso@soleta.eu> | 2020-10-27 11:15:19 +0100 |
commit | 282984d0ac17236bee19375607fa9a413d0b4057 (patch) | |
tree | 125aee8cada314333bde2b0694c62802f5d4bffe /ogcp/templates/actions | |
parent | 8fa8ca3f42d66e0c38b1d49e3baabf767103ae8b (diff) |
Add templates for clients, hardware, restore, session and setup
These templates were not added in previous commits.
Diffstat (limited to 'ogcp/templates/actions')
-rw-r--r-- | ogcp/templates/actions/client_details.html | 10 | ||||
-rw-r--r-- | ogcp/templates/actions/hardware.html | 28 | ||||
-rw-r--r-- | ogcp/templates/actions/image_restore.html | 11 | ||||
-rw-r--r-- | ogcp/templates/actions/session.html | 11 | ||||
-rw-r--r-- | ogcp/templates/actions/setup.html | 13 |
5 files changed, 73 insertions, 0 deletions
diff --git a/ogcp/templates/actions/client_details.html b/ogcp/templates/actions/client_details.html new file mode 100644 index 0000000..3ef13a6 --- /dev/null +++ b/ogcp/templates/actions/client_details.html @@ -0,0 +1,10 @@ +{% extends 'base.html' %} +{% import "bootstrap/wtf.html" as wtf %} + +{% block content %} + +{{ wtf.quick_form(form, + method='post', + button_map={'create': 'primary'}) }} + +{% endblock %} diff --git a/ogcp/templates/actions/hardware.html b/ogcp/templates/actions/hardware.html new file mode 100644 index 0000000..31f4d81 --- /dev/null +++ b/ogcp/templates/actions/hardware.html @@ -0,0 +1,28 @@ +{% extends 'base.html' %} +{% import "bootstrap/wtf.html" as wtf %} + +{% block content %} + +<table class="table table-striped"> + <thead class="thead-dark"> + <tr> + <th scope="col">{{ _('Item') }}</th> + <th scope="col">{{ _('Type') }}</th> + </tr> + </thead> + <tbody> + {% for item in hardware %} + <tr> + <td>{{ item['description'] }}</td> + <td>{{ item['type'] }}</td> + </tr> + {% endfor %} + </tbody> +</table> + +{{ wtf.quick_form(form, + action=url_for('action_hardware'), + method='post', + button_map={'refresh': 'primary'}) }} + +{% endblock %} diff --git a/ogcp/templates/actions/image_restore.html b/ogcp/templates/actions/image_restore.html new file mode 100644 index 0000000..bbc760a --- /dev/null +++ b/ogcp/templates/actions/image_restore.html @@ -0,0 +1,11 @@ +{% extends 'base.html' %} +{% import "bootstrap/wtf.html" as wtf %} + +{% block content %} + +{{ wtf.quick_form(form, + action=url_for('action_image_restore'), + method='post', + button_map={'restore': 'primary'}) }} + +{% endblock %} diff --git a/ogcp/templates/actions/session.html b/ogcp/templates/actions/session.html new file mode 100644 index 0000000..3023a57 --- /dev/null +++ b/ogcp/templates/actions/session.html @@ -0,0 +1,11 @@ +{% extends 'base.html' %} +{% import "bootstrap/wtf.html" as wtf %} + +{% block content %} + +{{ wtf.quick_form(form, + action=url_for('action_session'), + method='post', + button_map={'run': 'primary'}) }} + +{% endblock %} diff --git a/ogcp/templates/actions/setup.html b/ogcp/templates/actions/setup.html new file mode 100644 index 0000000..c7c4345 --- /dev/null +++ b/ogcp/templates/actions/setup.html @@ -0,0 +1,13 @@ +{% extends 'base.html' %} +{% import "bootstrap/wtf.html" as wtf %} + +{% block content %} + +{% for form in forms %} +{{ wtf.quick_form(form, + method='post', + button_map={'modify': 'primary', + 'delete': 'danger'}) }} +{% endfor %} + +{% endblock %} |