mirror of
https://github.com/almet/copanier.git
synced 2025-04-28 19:42:37 +02:00
Remove ref from delivery page
This commit is contained in:
parent
c020ec89fa
commit
97ae6daaae
1 changed files with 2 additions and 3 deletions
|
@ -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 %}
|
||||||
|
|
Loading…
Reference in a new issue