update.php 473 B

12345678910111213141516171819
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $model common\modules\config\models\Config */
  4. $this->title = '更新配置: '.' '.$model->name;
  5. $this->params['breadcrumbs'][] = ['label' => 'Configs', 'url' => ['index']];
  6. $this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
  7. $this->params['breadcrumbs'][] = 'Update';
  8. ?>
  9. <div class="config-update">
  10. <?= $this->render('_form', [
  11. 'model' => $model,
  12. ]) ?>
  13. </div>