add skill and position
This commit is contained in:
19
backend/modules/settings/views/additional-fields/update.php
Normal file
19
backend/modules/settings/views/additional-fields/update.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
use yii\helpers\Html;
|
||||
|
||||
/* @var $this yii\web\View */
|
||||
/* @var $model backend\modules\card\models\AdditionalFields */
|
||||
|
||||
$this->title = 'Редактирование: ' . $model->name;
|
||||
$this->params['breadcrumbs'][] = ['label' => 'Additional Fields', 'url' => ['index']];
|
||||
$this->params['breadcrumbs'][] = ['label' => $model->name, 'url' => ['view', 'id' => $model->id]];
|
||||
$this->params['breadcrumbs'][] = 'Update';
|
||||
?>
|
||||
<div class="additional-fields-update">
|
||||
|
||||
<?= $this->render('_form', [
|
||||
'model' => $model,
|
||||
]) ?>
|
||||
|
||||
</div>
|
Reference in New Issue
Block a user