add Notes

This commit is contained in:
Leorne
2019-12-05 15:05:33 +03:00
parent 2279783ca8
commit f7177975a8
16 changed files with 521 additions and 2 deletions

View 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>