{% extends 'layout.html' %} {% set active_page = "orders" -%} {% import "bootstrap/wtf.html" as wtf %} {% block container %}

Open orders:

{% if not current_user.is_anonymous() %}
{{ wtf.quick_form(form, action=url_for('.order_create'), button_map={'submit_button': 'primary'}, form_type='horizontal') }}
{% endif %}
{% endblock %}