You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.5 KiB
61 lines
1.5 KiB
<?php |
|
|
|
use core\helpers\UserHelper; |
|
use yii\helpers\ArrayHelper; |
|
use yii\helpers\Html; |
|
use yii\widgets\DetailView; |
|
|
|
/* @var $this yii\web\View */ |
|
/* @var $model \core\entities\Slider */ |
|
|
|
$this->title = $model->title; |
|
$this->params['breadcrumbs'][] = ['label' => Yii::t('slider', 'Slider'), 'url' => ['index']]; |
|
$this->params['breadcrumbs'][] = $this->title; |
|
?> |
|
<div class="slider-view"> |
|
|
|
<p> |
|
<?= Html::a(Yii::t('slider', 'Slider'), ['index'], ['class' => 'btn btn-default']) ?> |
|
<?= Html::a(Yii::t('buttons', 'Edit'), ['update', 'id' => $model->id], ['class' => 'btn btn-primary']) ?> |
|
<?= Html::a(Yii::t('buttons', 'Delete'), ['delete', 'id' => $model->id], [ |
|
'class' => 'btn btn-danger', |
|
'data' => [ |
|
'confirm' => Yii::t('buttons', 'Are you sure you want to delete this item?'), |
|
'method' => 'post', |
|
], |
|
]) ?> |
|
</p> |
|
|
|
|
|
<div class="row"> |
|
<div class="col-md-4"> |
|
<div class="box"> |
|
<div class="box-body"> |
|
<?php if ($model->image): ?> |
|
<div class="thumbnail"> |
|
<?= Html::img($model->getThumbFileUrl('image', 'thumb')) ?> |
|
</div> |
|
<?php endif; ?> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="col-md-8"> |
|
<div class="box"> |
|
<div class="box-body"> |
|
<?= DetailView::widget([ |
|
'model' => $model, |
|
'attributes' => [ |
|
'id', |
|
'title', |
|
'tagline', |
|
'url', |
|
], |
|
]) ?> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
|
|
</div>
|
|
|