31 lines
614 B
PHP
31 lines
614 B
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\Collection */
|
|
|
|
$this->title = Yii::t('frontend/collection', 'Create Collection');
|
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('frontend/collection', 'Collections'), 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<div class="collection-create">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
<dl class='dl-horizontal'>
|
|
<dt>Utolsó zárás</dt>
|
|
<dd>asdf</dd>
|
|
<dt></dt>
|
|
<dd></dd>
|
|
<dt></dt>
|
|
<dd></dd>
|
|
</dl>
|
|
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|