|
|
@@ -0,0 +1,27 @@ |
|
|
|
<table class="table table-condensed" id="address-list"> |
|
|
|
<thead> |
|
|
|
<tr> |
|
|
|
<th>Id</th> |
|
|
|
<th>Utilisateurs</th> |
|
|
|
<th>Date</th> |
|
|
|
<th></th> |
|
|
|
</tr> |
|
|
|
</thead> |
|
|
|
<tbody> |
|
|
|
{% for order in orderShopsWeekGiftVoucher %} |
|
|
|
<tr> |
|
|
|
<td>{{ order.id }}</td> |
|
|
|
<td>{{ order.user }}</td> |
|
|
|
<td>{{ order.updatedAt|date('d-m H:i') }}</td> |
|
|
|
<td><a class="btn-sm btn-success" |
|
|
|
href="{{ path('easyadmin', {id: order.id, entity: 'OrderShop', action: 'show'}) }}"> |
|
|
|
<i class="fas fa-eye"></i> |
|
|
|
</a></td> |
|
|
|
</tr> |
|
|
|
{% else %} |
|
|
|
<tr> |
|
|
|
<td colspan="4"><i>Aucune commande de bons cadeaux</i></td> |
|
|
|
{% endfor %} |
|
|
|
</tbody> |
|
|
|
</table> |
|
|
|
|