Align left product column in signing sheet and summary email

This commit is contained in:
Yohan Boniface 2019-03-24 18:40:23 +01:00
parent ea5ccedb00
commit fba14dc45a

View file

@ -3,7 +3,7 @@
{% for product in delivery.products %}
{% if order.get_quantity(product) %}
<tr>
<th class="product">{{ product.name }}</th>
<th class="product" style="text-align: left;">{{ product.name }}</th>
<td>{{ product.price }} €</td><td>{{ order.get_quantity(product) }}</td>
</tr>
{% endif %}