title = $model->id; $this->params['breadcrumbs'][] = ['label' => 'Users', 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?>
= Html::a('Обновить', ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?> =Html::a('Удалить', ['delete', 'id' => $model->id], [ 'class' => 'btn btn-danger', 'data' => [ 'confirm' => 'Вы уверены что хотите удалить этот элемент?', 'method' => 'post', ], ]) ?>
= DetailView::widget([ 'model' => $model, 'attributes' => [ 'id', 'username', 'auth_key', 'password_hash', 'password_reset_token', 'email:email', 'status', 'created_at', 'updated_at', ], ]) ?>