guild/backend/modules/card/views/resume-template/update.php
2022-11-03 17:46:36 +03:00

20 lines
536 B
PHP

<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model backend\modules\card\models\ResumeTemplate */
$this->title = 'Изменить шаблон: ' . $model->title;
$this->params['breadcrumbs'][] = ['label' => 'Resume Templates', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->title, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = 'Update';
?>
<div class="resume-template-update">
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>