guild/backend/modules/card/views/user-card/index.php

49 lines
1.2 KiB
PHP
Raw Normal View History

2018-10-11 11:15:09 +03:00
<?php
use yii\helpers\Html;
use yii\grid\GridView;
2018-10-11 14:52:44 +03:00
use yii\helpers\Url;
2018-10-11 11:15:09 +03:00
/* @var $this yii\web\View */
/* @var $searchModel backend\modules\card\models\UserCardSearch */
/* @var $dataProvider yii\data\ActiveDataProvider */
$this->title = 'Профили';
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="user-card-index">
<p>
<?= Html::a('Добавить', ['create'], ['class' => 'btn btn-success']) ?>
</p>
<?= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
2018-10-11 14:52:44 +03:00
//'id',
[
'label' => 'photo',
'format' => 'raw',
'value' => function($model){
return Html::img(Url::to($model->photo),[
'style' => 'width:100px;'
]);
},
],
2018-10-11 11:15:09 +03:00
'fio',
'passport',
'email:email',
//'gender',
//'dob',
//'status',
//'created_at',
//'updated_at',
['class' => 'yii\grid\ActionColumn'],
],
]); ?>
</div>