22 lines
762 B
HTML
22 lines
762 B
HTML
|
{% macro render_order(order) -%}
|
||
|
<div class="row darker">
|
||
|
<div class="col-md-8 col-lg-9">
|
||
|
<h5>{{ order.location.name }}</h5>
|
||
|
<p><b>Status:</b> <span class="time">{{ order.stoptime|countdown }}</span><br/>
|
||
|
<b>Orders:</b> {{ order.items.count() }}</p>
|
||
|
</div>
|
||
|
<div class="col-md-4 col-lg-3">
|
||
|
<a class="btn btn-primary btn-block align-bottom" href="{{ url_for('order_bp.order', id=order.id) }}">Expand</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
{%- endmacro %}
|
||
|
|
||
|
{% macro render_form_field_errors(field) %}
|
||
|
{%- if field.errors %}
|
||
|
{%- for error in field.errors %}
|
||
|
<p class="help-block">{{error}}</p>
|
||
|
{%- endfor %}
|
||
|
{%- elif field.description -%}
|
||
|
<p class="help-block">{{field.description|safe}}</p>
|
||
|
{%- endif %}
|
||
|
{% endmacro %}
|