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 %}
+
+
+
+
+ {{ _('Item') }} |
+ {{ _('Type') }} |
+
+
+
+ {% for item in hardware %}
+
+ {{ item['description'] }} |
+ {{ item['type'] }} |
+
+ {% endfor %}
+
+
+
+{{ 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 %}