Explorar el Código

[Backend] Utilisateurs vides dans le bloc "Utilisateurs au crédit négatif" #425

prodstable
Guillaume Bourgeois hace 2 años
padre
commit
cf3021e0c6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      backend/views/layouts/header.php

+ 1
- 1
backend/views/layouts/header.php Ver fichero

@@ -198,7 +198,7 @@ $producer = GlobalParam::getCurrentProducer();
<?php foreach ($usersNegativeCreditArray as $user): ?>
<li>
<a href="<?= Yii::$app->urlManagerBackend->createUrl(['user/credit', 'id' => $user['user_id']]); ?>">
<h5><?= Html::encode($user['name'] . ' ' . $user['lastname']); ?>
<h5><?= User::getUsernameFromArray($user); ?>
<small>
<i class="fa fa-euro"></i> <?= Price::format($user['credit']); ?>
</small>

Cargando…
Cancelar
Guardar