Переглянути джерело

[Administration] Tableau de bord : correctif date modification abonnement

feature/souke
Guillaume Bourgeois 11 місяці тому
джерело
коміт
5a028a2cd0
1 змінених файлів з 1 додано та 1 видалено
  1. +1
    -1
      backend/views/dashboard/index.php

+ 1
- 1
backend/views/dashboard/index.php Переглянути файл

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

Завантаження…
Відмінити
Зберегти