mirror of
https://github.com/almet/copanier.git
synced 2025-04-28 11:32:38 +02:00
Merge branch 'remove-ref' into 'master'
Remove ref from delivery page See merge request ybon/copanier!8
This commit is contained in:
commit
434d9f293e
1 changed files with 2 additions and 3 deletions
|
@ -7,7 +7,6 @@
|
|||
<table class="delivery">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="ref">Référence</th>
|
||||
<th class="product">Produit</th>
|
||||
<th class="price">Prix</th>
|
||||
{% if delivery.has_packing %}
|
||||
|
@ -28,7 +27,6 @@
|
|||
<tbody>
|
||||
{% for product in delivery.products %}
|
||||
<tr>
|
||||
<td class="ref">{{ product.ref }}</td>
|
||||
<th class="product">{{ product }}</th>
|
||||
<td>{{ product.price }} €</td>
|
||||
{% if delivery.has_packing %}
|
||||
|
@ -45,7 +43,8 @@
|
|||
{% endfor %}
|
||||
</tr>
|
||||
{% 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 %}
|
||||
<td>—</td>
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in a new issue