duplicate grouped order part 1

This commit is contained in:
Laetitia Getti 2023-07-06 16:30:14 +02:00 committed by Laetitia Getti
parent 22a97a51fa
commit c8c9744c98

View file

@ -21,7 +21,7 @@
<th>Livraison</th>
<th>Fin des commandes</th>
<th>Nombre de commandes</th>
<th>Voir</th>
<th> </th>
</tr>
</thead>
<tbody>
@ -34,12 +34,17 @@
<td>{{ gr_order.delivery_date }}</td>
<td>{{ gr_order.deadline }}</td>
<td>{{ gr_order.order_set.count }}</td>
<td><a title="Détail de la commande groupée" href="{% url 'order:grouped_order_detail' gr_order.id %}">
<td>
<a title="Détail de la commande groupée" href="{% url 'order:grouped_order_detail' gr_order.id %}">
<i class="fa fa-eye mr-3" aria-hidden="true"></i>
</a>
<a title="Gestion de la commande groupée" href="{% url 'order:grouped_order_overview' gr_order.id %}">
<i class="fa fa-list-ul mr-3" aria-hidden="true"></i>
</a></td>
</a>
<a title="Dupliquer la commande groupée" href="{% url 'order:duplicate_grouped_order' gr_order.id %}">
<i class="fa fa-files-o mr-3" aria-hidden="true"></i>
</a>
</td>
</tr>
{% endfor %}
</tbody>
@ -54,7 +59,7 @@
<th>Livraison</th>
<th>Fin des commandes</th>
<th>Nombre de commandes</th>
<th>Voir</th>
<th> </th>
</tr>
</thead>
<tbody>
@ -67,12 +72,17 @@
<td>{{ gr_order.delivery_date }}</td>
<td>{{ gr_order.deadline }}</td>
<td>{{ gr_order.order_set.count }}</td>
<td><a title="Détail de la commande groupée" href="{% url 'order:grouped_order_detail' gr_order.id %}">
<td>
<a title="Détail de la commande groupée" href="{% url 'order:grouped_order_detail' gr_order.id %}">
<i class="fa fa-eye mr-3" aria-hidden="true"></i>
</a>
<a title="Gestion de la commande groupée" href="{% url 'order:grouped_order_overview' gr_order.id %}">
<i class="fa fa-list-ul mr-3" aria-hidden="true"></i>
</a></td>
</a>
<a title="Dupliquer la commande groupée" href="{% url 'order:duplicate_grouped_order' gr_order.id %}">
<i class="fa fa-files-o mr-3" aria-hidden="true"></i>
</a>
</td>
</tr>
{% endfor %}
</tbody>
@ -87,7 +97,7 @@
<th>Livraison</th>
<th>Fin des commandes</th>
<th>Nombre de commandes</th>
<th>Voir</th>
<th> </th>
</tr>
</thead>
<tbody>
@ -100,12 +110,17 @@
<td>{{ gr_order.delivery_date }}</td>
<td>{{ gr_order.deadline }}</td>
<td>{{ gr_order.order_set.count }}</td>
<td><a title="Détail de la commande groupée" href="{% url 'order:grouped_order_detail' gr_order.id %}">
<td>
<a title="Détail de la commande groupée" href="{% url 'order:grouped_order_detail' gr_order.id %}">
<i class="fa fa-eye mr-3" aria-hidden="true"></i>
</a>
<a title="Gestion de la commande groupée" href="{% url 'order:grouped_order_overview' gr_order.id %}">
<i class="fa fa-list-ul mr-3" aria-hidden="true"></i>
</a></td>
</a>
<a title="Dupliquer la commande groupée" href="{% url 'order:duplicate_grouped_order' gr_order.id %}">
<i class="fa fa-files-o mr-3" aria-hidden="true"></i>
</a>
</td>
</tr>
{% endfor %}
</tbody>