update.php 452 B

1234567891011121314151617
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $model common\models\Page */
  4. $this->title = $type.' - '.$model->title;
  5. $this->params['breadcrumbs'][] = ['label' => '人才计算器', 'url' => ['index']];
  6. $this->params['breadcrumbs'][] = ['label' => $model->title, 'url' => ['view', 'id' => $model->id]];
  7. $this->params['breadcrumbs'][] = 'Update';
  8. ?>
  9. <div class="page-update">
  10. <?= $this->render('_form', [
  11. 'model' => $model
  12. ]) ?>
  13. </div>