123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- use yii\grid\GridView;
- use yii\helpers\Html;
- use yii\widgets\Pjax;
- /* @var $this yii\web\View */
- /* @var $dataProvider yii\data\ActiveDataProvider */
- /* @var $searchModel rbac\models\searchs\AuthItem */
- $this->title = Yii::t('rbac', 'Permission');
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <?php $this->beginBlock('content-header') ?>
- <?= $this->title . ' ' . Html::a(Yii::t('app', '新权限'), ['create'], ['class' => 'btn btn-primary btn-flat btn-xs']) ?>
- <?php $this->endBlock() ?>
- <div class="box box-primary">
- <div class="box-body">
- <?php
- Pjax::begin([
- 'enablePushState' => false,
- ]);
- echo GridView::widget([
- 'dataProvider' => $dataProvider,
- 'filterModel' => $searchModel,
- 'columns' => [
- ['class' => 'yii\grid\SerialColumn'],
- [
- 'attribute' => 'name',
- 'label' => Yii::t('rbac', 'Name'),
- ],
- [
- 'attribute' => 'description',
- 'label' => Yii::t('rbac', 'Description'),
- ],
- ['class' => 'yii\grid\ActionColumn'],
- ],
- ]);
- Pjax::end();
- ?>
- </div>
- </div>
|