add company-manager role
This commit is contained in:
19
backend/modules/company/views/company-manager/update.php
Normal file
19
backend/modules/company/views/company-manager/update.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model backend\modules\company\models\CompanyManager */
|
||||
|
||||
$this->title = 'Изменить менеджера компании: ' . $model->userCard->fio;
|
||||
$this->params['breadcrumbs'][] = ['label' => 'Company Managers', 'url' => ['index']];
|
||||
$this->params['breadcrumbs'][] = ['label' => $model->id, 'url' => ['view', 'id' => $model->id]];
|
||||
$this->params['breadcrumbs'][] = 'Update';
|
||||
?>
|
||||
<div class="company-manager-update">
|
||||
|
||||
<?= $this->render('_form', [
|
||||
'model' => $model,
|
||||
]) ?>
|
||||
|
||||
</div>
|
Reference in New Issue
Block a user