| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- use yii\helpers\Html;
- use yii\grid\GridView;
- /* @var $this yii\web\View */
- /* @var $searchModel app\models\UsersSearch */
- /* @var $dataProvider yii\data\ActiveDataProvider */
- $this->title = 'Users';
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="users-index">
- <h1><?= Html::encode($this->title) ?></h1>
- <?php // echo $this->render('_search', ['model' => $searchModel]); ?>
-
- <?= GridView::widget([
- 'dataProvider' => $dataProvider,
- 'filterModel' => $searchModel,
- 'columns' => [
- ['class' => 'yii\grid\SerialColumn'],
- 'id',
- 'username',
- //'role',
- 'email:email',
- 'fio',
- 'at_org',
- // 'org_type',
- 'member_phone',
- // 'fax',
- // 'status',
- // 'password_hash',
- // 'auth_key',
- // 'confirmed_at',
- // 'unconfirmed_email:email',
- // 'blocked_at',
- // 'registration_ip',
- // 'created_at',
- // 'updated_at',
- // 'flags',
- ['class' => 'yii\grid\ActionColumn'],
- ],
- ]); ?>
- </div>
|