Browse Source

Ajout de la page listant les emails des utilisateurs

master
keun 8 years ago
parent
commit
631d109b24
2 changed files with 7 additions and 2 deletions
  1. +1
    -1
      backend/views/user/index.php
  2. +6
    -1
      backend/views/user/liste_mails.php

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

?> ?>
<div class="user-index"> <div class="user-index">


<h1><?= Html::encode($this->title) ?></h1>
<h1><?= Html::encode($this->title) ?> <?= Html::a('<span class="glyphicon glyphicon-envelope"></span> Liste des emails', ['mail'], ['class' => 'btn btn-default']) ?></h1>


<?= GridView::widget([ <?= GridView::widget([
'dataProvider' => $dataProvider, 'dataProvider' => $dataProvider,

+ 6
- 1
backend/views/user/liste_mails.php View File

* and open the template in the editor. * and open the template in the editor.
*/ */


$this->title = 'Liste des emails utilisateurs';
use yii\helpers\Html ;

$this->title = 'Liste des emails';
$this->params['breadcrumbs'][] = ['label' => 'Utilisateurs',
'url' => ['user/index']] ;
$this->params['breadcrumbs'][] = $this->title;


?> ?>



Loading…
Cancel
Save