Explorar el Código

[Administration] Tableau de bord : correctif date modification abonnement

master
Guillaume Bourgeois hace 1 año
padre
commit
5a028a2cd0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      backend/views/dashboard/index.php

+ 1
- 1
backend/views/dashboard/index.php Ver fichero

@@ -166,7 +166,7 @@ $this->setTitle('Tableau de bord');
<tbody>
<?php foreach($subscriptionsLatestAddedArray as $subscription): ?>
<tr>
<td><?= date('d/m/Y à H:i', strtotime($subscription->created_at)); ?></td>
<td><?= date('d/m/Y à H:i', strtotime($subscription->updated_at ?: $subscription->created_at)); ?></td>
<td><?= $userModule->getUsername($subscription->user); ?></td>
<td><?= Html::encode($subscription->pointSale->name); ?></td>
<td><?= $subscriptionModule->getProductsListAsHtml($subscription); ?></td>

Cargando…
Cancelar
Guardar