Merge branch 'remove-ref' into 'master'

Remove ref from delivery page

See merge request ybon/copanier!8
This commit is contained in:
Alexis Metaireau 2019-04-17 22:50:05 +02:00
commit 434d9f293e

View file

@ -7,7 +7,6 @@
<table class="delivery"> <table class="delivery">
<thead> <thead>
<tr> <tr>
<th class="ref">Référence</th>
<th class="product">Produit</th> <th class="product">Produit</th>
<th class="price">Prix</th> <th class="price">Prix</th>
{% if delivery.has_packing %} {% if delivery.has_packing %}
@ -28,7 +27,6 @@
<tbody> <tbody>
{% for product in delivery.products %} {% for product in delivery.products %}
<tr> <tr>
<td class="ref">{{ product.ref }}</td>
<th class="product">{{ product }}</th> <th class="product">{{ product }}</th>
<td>{{ product.price }} €</td> <td>{{ product.price }} €</td>
{% if delivery.has_packing %} {% if delivery.has_packing %}
@ -45,7 +43,8 @@
{% endfor %} {% endfor %}
</tr> </tr>
{% endfor %} {% endfor %}
<tr><th class="total"><i class="icon-pricetags"></i> Total</th><td></td><td></td> <tr>
<th class="total"><i class="icon-pricetags"></i> Total</th><td></td>
{% if delivery.has_packing %} {% if delivery.has_packing %}
<td></td> <td></td>
{% endif %} {% endif %}