fitness-web/backend/views/key/update.php

23 lines
581 B
PHP

<?php
use yii\helpers\Html;
use common\models\Key;
/* @var $this yii\web\View */
/* @var $model common\models\Key */
$this->title = "Kulcs módosítása";
$this->params['breadcrumbs'][] = ['label' => Yii::t('backend/key', 'Keys'), 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->id_key, 'url' => ['view', 'id' => $model->id_key]];
$this->params['breadcrumbs'][] = Yii::t('backend/key', 'Update');
?>
<div class="key-update">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>