Make it easier to distinguish orders from

their extra's
This commit is contained in:
Jan-Pieter Baert 2019-10-31 11:11:52 +01:00
parent 8e52e96c2d
commit 7d2653ac42
No known key found for this signature in database
GPG key ID: B19186932178234A
2 changed files with 3 additions and 3 deletions

View file

@ -106,7 +106,7 @@
{% if value["extras"] -%}
<div class="extras">
{% for extra in value["extras"] -%}
<div>{{ extra }}</div>
<div>- {{ extra }}</div>
{% endfor %}
</div>
{%- endif %}

View file

@ -29,7 +29,7 @@ Haldis - Order {{ order.id }}
{% if value["extras"] -%}
<div class="extras">
{% for extra in value["extras"] -%}
<div>{{ extra }}</div>
<div>- {{ extra }}</div>
{% endfor %}
</div>
{%- endif %}
@ -39,4 +39,4 @@ Haldis - Order {{ order.id }}
</div>
</div>
{%- endblock %}
{%- endblock %}