cd976a8d
Administrator
add event to comp...
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
* @var EventLang[] $modelLangs
*/
$this->title = Yii::t('app', 'Update {modelClass}: ', [
'modelClass' => 'Event',
]) . $model->lang->title;
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Events'), 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->lang->title, 'url' => ['view', 'id' => $model->id]];
$this->params['breadcrumbs'][] = Yii::t('app', 'Update');
?>
<div class="event-update">
<h1><?= Html::encode($this->title) ?></h1>
<?= $this->render('_form', [
'model' => $model,
'modelLangs' => $modelLangs
]) ?>
</div>
|