2015-03-27 21:57:37 +01:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% set active_page = "orders" -%}
|
|
|
|
|
|
|
|
{% import "bootstrap/wtf.html" as wtf %}
|
|
|
|
{% block container %}
|
|
|
|
<div class="row">
|
2015-03-28 00:02:12 +01:00
|
|
|
{{ wtf.quick_form(form, action=url, button_map={'submit_button': 'primary'}) }}
|
2015-03-27 21:57:37 +01:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|