diff options
Diffstat (limited to 'ogcp/templates')
-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 %} |