Blame view

backend/views/deliveries/update.php 587 Bytes
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
  <?php
  
  use yii\helpers\Html;
  
  /* @var $this yii\web\View */
  /* @var $model common\models\Deliveries */
  
5a9f41f9   Administrator   VItaliy 16.12.2015
8
  $this->title = 'Редактировать Deliveries: ' . ' ' . $model->name;
0084d336   Administrator   Importers CRUD
9
10
  $this->params['breadcrumbs'][] = ['label' => 'Deliveries', 'url' => ['index']];
  $this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
5a9f41f9   Administrator   VItaliy 16.12.2015
11
  $this->params['breadcrumbs'][] = 'Редактировать';
0084d336   Administrator   Importers CRUD
12
13
14
15
16
17
18
19
20
21
  ?>
  <div class="deliveries-update">
  
      <h1><?= Html::encode($this->title) ?></h1>
  
      <?= $this->render('_form', [
          'model' => $model,
      ]) ?>
  
  </div>