title = $model->share_id;
$this->params['breadcrumbs'][] = ['label' => 'Shares', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
\yii\web\YiiAsset::register($this);
?>
= Html::encode($this->title) ?>
= Html::a('Update', ['update', 'share_id' => $model->share_id], ['class' => 'btn btn-primary']) ?>
= Html::a('Delete', ['delete', 'share_id' => $model->share_id], [
'class' => 'btn btn-danger',
'data' => [
'confirm' => 'Are you sure you want to delete this item?',
'method' => 'post',
],
]) ?>
= DetailView::widget([
'model' => $model,
'attributes' => [
'share_id',
// 'sharer_id',
'file_relative_path',
'access_code',
'creation_date',
],
]) ?>