42 lines
1008 B
PHP
42 lines
1008 B
PHP
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use yii\grid\GridView;
|
|
use yii\widgets\Pjax;
|
|
/* @var $this yii\web\View */
|
|
/* @var $searchModel app\models\AreaSearch */
|
|
/* @var $dataProvider yii\data\ActiveDataProvider */
|
|
|
|
$this->title = 'Areas';
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
?>
|
|
<div class="area-index">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
<?php Pjax::begin(); ?>
|
|
<?php // echo $this->render('_search', ['model' => $searchModel]); ?>
|
|
|
|
<p>
|
|
<?= Html::a('Create Area', ['create'], ['class' => 'btn btn-success']) ?>
|
|
</p>
|
|
|
|
<?= GridView::widget([
|
|
'dataProvider' => $dataProvider,
|
|
'filterModel' => $searchModel,
|
|
'columns' => [
|
|
['class' => 'yii\grid\SerialColumn'],
|
|
|
|
'id',
|
|
'code',
|
|
'pid',
|
|
'name',
|
|
'description:ntext',
|
|
//'created_at',
|
|
//'modified_at',
|
|
|
|
['class' => 'yii\grid\ActionColumn'],
|
|
],
|
|
]); ?>
|
|
<?php Pjax::end(); ?>
|
|
</div>
|