Browse Source

[Administration] Tableau de bord : correctif date modification abonnement

feature/souke
Guillaume Bourgeois 11 months ago
parent
commit
5a028a2cd0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      backend/views/dashboard/index.php

+ 1
- 1
backend/views/dashboard/index.php View File

@@ -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>

Loading…
Cancel
Save