| 1234567891011121314151617181920212223 |
- <?php
- use yii\helpers\Html;
- /* @var $this yii\web\View */
- /* @var $model app\models\Auctions */
- $this->title = Yii::t('app', 'Редагувати аукціон : ', [
- 'modelClass' => 'Auctions',
- ]) . ' ' . $model->name;
- $this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Auctions'), 'url' => ['index']];
- $this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
- $this->params['breadcrumbs'][] = Yii::t('app', 'Update');
- ?>
- <div class="auctions-update">
- <h1><?= Html::encode($this->title) ?></h1>
- <?= $this->render('_form', [
- 'model' => $model,
- ]) ?>
- </div>
|