| 123456789101112131415161718 | 
							- <?php
 
- /* @var $this yii\web\View */
 
- /* @var $model common\models\Page */
 
- $this->title = '编辑政策: '.' '.$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,
 
- 		'configModels' => $configModels,
 
-     ]) ?>
 
- </div>
 
 
  |