@@ -68,6 +68,7 @@ group: | |||
complementary: Commandes complémentaires | |||
tickets: Tickets relatif à la commande | |||
orderStatusHistories: Historique de changement de statut | |||
waitingBankReturn: Commandes en attente de retour banque | |||
Ticket: | |||
listMessages: Liste des messages | |||
list: Tickets ouverts |
@@ -0,0 +1,22 @@ | |||
<table class="table table-condensed" id="address-list"> | |||
<thead> | |||
<tr> | |||
<th>Adresse</th> | |||
<th></th> | |||
</tr> | |||
</thead> | |||
<tbody> | |||
{% for address in addressesLoopBesancon %} | |||
<tr> | |||
<td>{{ address }}</td> | |||
<td><a class="btn-sm btn-success" | |||
href="{{ path('easyadmin', {id: address.user.id, entity: 'User', action: 'show'}) }}"> | |||
<i class="fas fa-eye"></i> | |||
</a></td> | |||
</tr> | |||
{% else %} | |||
<tr> | |||
<td colspan="2"><i>Aucune adresse pour le moment</i></td> | |||
{% endfor %} | |||
</tbody> | |||
</table> |
@@ -0,0 +1,25 @@ | |||
<table class="table table-condensed" id="address-list"> | |||
<thead> | |||
<tr> | |||
<th>Utilisateurs</th> | |||
<th>Date</th> | |||
<th></th> | |||
</tr> | |||
</thead> | |||
<tbody> | |||
{% for order in ordersWaitingBankReturn %} | |||
<tr> | |||
<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="2"><i>Aucune commande pour le moment</i></td> | |||
{% endfor %} | |||
</tbody> | |||
</table> | |||