You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
398 B
24 lines
398 B
6 years ago
|
<?php
|
||
|
|
||
|
use core\forms\SettingsForm;
|
||
|
|
||
|
/**
|
||
|
* @var yii\web\View $this
|
||
|
* @var SettingsForm $model
|
||
|
*/
|
||
|
|
||
|
$this->title = Yii::t('main','Create Setting');
|
||
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('main', 'Settings'), 'url' => ['index']];
|
||
|
$this->params['breadcrumbs'][] = $this->title;
|
||
|
?>
|
||
|
<div class="setting-create">
|
||
|
|
||
|
<?=
|
||
|
$this->render(
|
||
|
'_form',
|
||
|
[
|
||
|
'model' => $model,
|
||
|
]
|
||
|
) ?>
|
||
|
|
||
|
</div>
|