25 lines
604 B
PHP
25 lines
604 B
PHP
|
<?php
|
||
|
|
||
|
use yii\helpers\Html;
|
||
|
use common\components\schema\models\Schema;
|
||
|
|
||
|
/**
|
||
|
* @var $this yii\web\View
|
||
|
* @var $model Schema
|
||
|
*/
|
||
|
|
||
|
$this->title = Yii::t('schema', 'Обновить') . ": " . Yii::t('schema', 'стоп-слово') . "#$model->id";
|
||
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('schema', 'Стоп-слова'), 'url' => ['index']];
|
||
|
$this->params['breadcrumbs'][] = $model->id;
|
||
|
?>
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="col-xs-12">
|
||
|
<h1><?= Html::encode($this->title) ?></h1>
|
||
|
<?= $this->render('_form', [
|
||
|
'model' => $model,
|
||
|
]) ?>
|
||
|
|
||
|
</div>
|
||
|
</div>
|