Blame view

backend/views/art-history/create.php 445 Bytes
385d70ca   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
  <?php
  
  use yii\helpers\Html;
  
  
  /* @var $this yii\web\View */
  /* @var $model common\models\ArtHistory */
  
25545a10   Administrator   VItaliy 30.11.2015
9
  $this->title = 'Добавить Art History';
385d70ca   Administrator   Importers CRUD
10
11
12
13
14
15
16
17
18
19
20
21
  $this->params['breadcrumbs'][] = ['label' => 'Art Histories', 'url' => ['index']];
  $this->params['breadcrumbs'][] = $this->title;
  ?>
  <div class="art-history-create">
  
      <h1><?= Html::encode($this->title) ?></h1>
  
      <?= $this->render('_form', [
          'model' => $model,
      ]) ?>
  
  </div>