guild/backend/modules/card/views/user-card/update.php
2019-12-09 10:54:39 +03:00

20 lines
501 B
PHP
Executable File

<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model backend\modules\card\models\UserCard */
$this->title = $model->fio;
$this->params['breadcrumbs'][] = ['label' => 'Профили', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = 'Редактировать';
?>
<div class="user-card-update">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>