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

Open orders:

{% for order in orders %} {{ util.render_order(order) }} {% endfor %}
{% if not current_user.is_anonymous() %}

Create new order:

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