title = $model->name;
$this->params['breadcrumbs'][] = ['label' => 'Projects', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
= Html::encode($this->title) ?>
= 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',
],
]) ?>
= DetailView::widget([
'model' => $model,
'attributes' => [
'id',
'name',
'description:ntext',
'created_at',
'updated_at',
],
]) ?>
Дополнительные сведения
= GridView::widget([
'dataProvider' => $modelFildValue,
'layout'=>"{items}",
'columns' => [
'field.name:text:Поле',
'value',
],
]); ?>
Пользователи проекта
= GridView::widget([
'dataProvider' => $modelUser,
'layout'=>"{items}",
'columns' => [
'card.fio:text:ФИО',
[
'class' => 'yii\grid\ActionColumn',
'template' => '{view} {update}',
'buttons' => [
'update' => function ($url,$model) {
return Html::a(
'
',
['/card/user-card/update', 'id' => $model->id],
['target' => '_blank']
);
},
'view' => function ($url,$model) {
return Html::a(
'
',
['/card/user-card/view', 'id' => $model->id],
['target' => '_blank']
);
},
],
],
],
]); ?>