1234567891011121314151617 |
- <?php
- /* @var $this yii\web\View */
- /* @var $model common\models\Page */
- $this->title = $type.' - '.$model->title;
- $this->params['breadcrumbs'][] = ['label' => '人才计算器', 'url' => ['index']];
- $this->params['breadcrumbs'][] = ['label' => $model->title, 'url' => ['view', 'id' => $model->id]];
- $this->params['breadcrumbs'][] = 'Update';
- ?>
- <div class="page-update">
- <?= $this->render('_form', [
- 'model' => $model
- ]) ?>
- </div>
|