浏览代码

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

正在加载...
取消
保存