ogcp/ogcp/templates/actions/add_room.html

18 lines
441 B
HTML

{% extends 'scopes.html' %}
{% import "bootstrap/wtf.html" as wtf %}
{% block nav_room %} active{% endblock %}
{% block nav_room_add %} active{% endblock %}
{% block content %}
<h1 class="m-5">{{_('Add room')}}</h1>
{{ wtf.quick_form(form,
action=url_for('action_room_add'),
method='post',
button_map={'submit': 'primary'},
extra_classes="mx-5") }}
{% endblock %}