add Notes
This commit is contained in:
19
backend/modules/notes/views/notes/create.php
Executable file
19
backend/modules/notes/views/notes/create.php
Executable file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model backend\modules\notes\models\Note */
|
||||
|
||||
$this->title = 'Создать заметку';
|
||||
$this->params['breadcrumbs'][] = ['label' => 'Заметки', 'url' => ['index']];
|
||||
$this->params['breadcrumbs'][] = $this->title;
|
||||
?>
|
||||
<div class="notes-create">
|
||||
|
||||
<?= $this->render('_form', [
|
||||
'model' => $model,
|
||||
]) ?>
|
||||
|
||||
</div>
|
Reference in New Issue
Block a user