summaryrefslogtreecommitdiffstats
path: root/ogcp/templates/actions/add_room.html
diff options
context:
space:
mode:
Diffstat (limited to 'ogcp/templates/actions/add_room.html')
-rw-r--r--ogcp/templates/actions/add_room.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/ogcp/templates/actions/add_room.html b/ogcp/templates/actions/add_room.html
new file mode 100644
index 0000000..dffdc87
--- /dev/null
+++ b/ogcp/templates/actions/add_room.html
@@ -0,0 +1,15 @@
+{% extends 'base.html' %}
+{% import "bootstrap/wtf.html" as wtf %}
+
+{% block content %}
+
+<h1 class="m-5">{{_('Add room form')}}</h1>
+
+{{ wtf.quick_form(form,
+ action=url_for('action_room_add'),
+ method='post',
+ button_map={'submit': 'primary'},
+ extra_classes="mx-5") }}
+
+{% endblock %}
+