access - модуль

This commit is contained in:
2019-10-22 18:03:40 +03:00
parent 562c4a925e
commit 34dd9f3f37
21 changed files with 1790 additions and 524 deletions

View File

@ -0,0 +1,21 @@
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model common\models\Accesses */
$this->title = 'Редактировать доступ: ' . $model->name;
$this->params['breadcrumbs'][] = ['label' => 'Accesses', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = 'Update';
?>
<div class="accesses-update">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>