37 lines
1014 B
PHP
37 lines
1014 B
PHP
|
<?php
|
||
|
|
||
|
use yii\helpers\Html;
|
||
|
use yii\widgets\DetailView;
|
||
|
|
||
|
/* @var $this yii\web\View */
|
||
|
/* @var $model common\models\SkillCategory */
|
||
|
|
||
|
$this->title = $model->name;
|
||
|
$this->params['breadcrumbs'][] = ['label' => 'Skill Categories', 'url' => ['index']];
|
||
|
$this->params['breadcrumbs'][] = $this->title;
|
||
|
\yii\web\YiiAsset::register($this);
|
||
|
?>
|
||
|
<div class="skill-category-view">
|
||
|
|
||
|
<p>
|
||
|
<?= Html::a('Редактировать', ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?>
|
||
|
<?= Html::a('Удалить', ['delete', 'id' => $model->id], [
|
||
|
'class' => 'btn btn-danger',
|
||
|
'data' => [
|
||
|
'confirm' => 'Are you sure you want to delete this item?',
|
||
|
'method' => 'post',
|
||
|
],
|
||
|
]) ?>
|
||
|
<?= Html::a('Список', ['index'], ['class' => 'btn btn-primary']) ?>
|
||
|
</p>
|
||
|
|
||
|
<?= DetailView::widget([
|
||
|
'model' => $model,
|
||
|
'attributes' => [
|
||
|
'id',
|
||
|
'name',
|
||
|
],
|
||
|
]) ?>
|
||
|
|
||
|
</div>
|