haldis/app/templates/utils.html

12 lines
436 B
HTML
Raw Normal View History

2015-03-28 23:06:36 +01:00
{% macro render_order(order) -%}
<div class="row darker">
<div class="col-md-9">
<h5>{{ order.location.name }}</h5>
<p><b>Status:</b> {{ order.stoptime|countdown }}<br/>
<b>Orders:</b> {{ order.items.count() }}</p>
</div>
<div class="col-md-3">
2015-03-29 11:46:08 +02:00
<a class="btn btn-primary align-bottom full-width" href="{{ url_for('order_bp.order', id=order.id) }}">Expand</a>
2015-03-28 23:06:36 +01:00
</div>
</div>
{%- endmacro %}