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

Open orders:

{% for order in orders %} {{ util.render_order(order) }} {% endfor %} {% else %}

There are no orders in the history

{%- endif %}
{% endblock %} {% block styles -%} {{ super() }} {%- endblock %} {% block scripts -%} {{ super() }} {%- endblock %}