24 lines
685 B
PHP
24 lines
685 B
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\Contract */
|
|
|
|
$this->title = Yii::t('common/door_log', 'Update {modelClass}: ', [
|
|
'modelClass' => 'Contract',
|
|
]) . ' ' . $model->id_contract;
|
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('common/door_log', 'Contracts'), 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = ['label' => $model->id_contract, 'url' => ['view', 'id' => $model->id_contract]];
|
|
$this->params['breadcrumbs'][] = Yii::t('common/door_log', 'Update');
|
|
?>
|
|
<div class="contract-update">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|