Files
Alex Solomaha 8bd9987d2a #24
2016-12-10 23:47:07 +02:00

39 lines
991 B
PHP

<?php
/* @var $this yii\web\View */
/* @var $model app\models\Board */
use yii\helpers\Html;
use yii\widgets\DetailView;
$this->title = $model->name;
$this->params['breadcrumbs'][] = ['label' => 'Устройства', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="board-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',
],
]) ?>
</p>
<?= DetailView::widget([
'model' => $model,
'attributes' => [
'id',
'name',
'typeLabel',
'secret',
'baseUrl',
'remote_connection:boolean',
],
]) ?>
</div>