24 lines
608 B
PHP
24 lines
608 B
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\CardEventRegistrationForm */
|
|
|
|
$this->title = Yii::t('event-registration', 'Create Event Registration');
|
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('event-registration', 'Event Registrations'), 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<div class="event-registration-create">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
<?php echo $this->render('_view', ['model' => $event]); ?>
|
|
|
|
<?= $this->render('_form_register_card', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|