fitness-web/backend/views/event-registration/update.php
2021-09-27 20:40:18 +02:00

24 lines
706 B
PHP

<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model common\models\EventRegistration */
$this->title = Yii::t('event-registration', 'Update {modelClass}: ', [
'modelClass' => 'Event Registration',
]) . ' ' . $model->id;
$this->params['breadcrumbs'][] = ['label' => Yii::t('event-registration', 'Event Registrations'), 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = Yii::t('event-registration', 'Update');
?>
<div class="event-registration-update">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
]) ?>
</div>