24 lines
737 B
PHP
24 lines
737 B
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model common\models\AccountState */
|
|
|
|
$this->title = Yii::t('backend/account-state', 'Update {modelClass}: ', [
|
|
'modelClass' => 'Account State',
|
|
]) . ' ' . $model->id_account_state;
|
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('backend/account-state', 'Account States'), 'url' => ['index']];
|
|
$this->params['breadcrumbs'][] = ['label' => $model->id_account_state, 'url' => ['view', 'id' => $model->id_account_state]];
|
|
$this->params['breadcrumbs'][] = Yii::t('backend/account-state', 'Update');
|
|
?>
|
|
<div class="account-state-update">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
<?= $this->render('_form', [
|
|
'model' => $model,
|
|
]) ?>
|
|
|
|
</div>
|