9 lines
No EOL
269 B
HTML
9 lines
No EOL
269 B
HTML
{% extends "layout.html" %}
|
|
{% set active_page = "orders" -%}
|
|
|
|
{% import "bootstrap/wtf.html" as wtf %}
|
|
{% block container %}
|
|
<div class="row">
|
|
{{ wtf.quick_form(form, action=url_for('order_create'), button_map={'submit_button': 'primary'}) }}
|
|
</div>
|
|
{% endblock %} |