haldis/app/templates/order_form.html

9 lines
249 B
HTML
Raw Normal View History

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