|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
-
-
-
- use yii\helpers\Html;
-
- $this->setTitle("Modifier un groupe d'utilisateur") ;
- $this->addBreadcrumb(['label' => "Groupes d'utilisateurs", 'url' => ['index']]) ;
- $this->addBreadcrumb(['label' => Html::encode($model->name), 'url' => ['update', 'id' => $model->id]]) ;
- $this->addBreadcrumb('Modifier') ;
-
- ?>
-
- <div class="user-group-update">
- <?= $this->render('_form', [
- 'model' => $model,
- ]) ?>
- </div>
|