Blame view

backend/views/offices/update.php 604 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\Offices */
  
5a9f41f9   Administrator   VItaliy 16.12.2015
8
  $this->title = 'Редактировать Offices: ' . ' ' . $model->name;
0084d336   Administrator   Importers CRUD
9
10
  $this->params['breadcrumbs'][] = ['label' => 'Offices', '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
  ?>
  <div class="offices-update">
  
      <h1><?= Html::encode($this->title) ?></h1>
  
      <?= $this->render('_form', [
          'model' => $model,
7c40e42d   Administrator   Importers CRUD
19
          'cities' => $cities,
0084d336   Administrator   Importers CRUD
20
21
22
      ]) ?>
  
  </div>