1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- use yii\grid\GridView;
- use yii\helpers\Html;
- /* @var $this yii\web\View */
- /* @var $searchModel common\modules\i18n\models\search\I18nMessageSearch */
- /* @var $dataProvider yii\data\ActiveDataProvider */
- $this->title = Yii::t('backend', 'I18n Messages');
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <?php $this->beginBlock('content-header') ?>
- <?= $this->title . ' ' . Html::a(Yii::t('app', '新i18n信息'), ['create'], ['class' => 'btn btn-success']) ?>
- <?php $this->endBlock() ?>
- <div class="box box-success">
- <div class="box-body">
- <?php echo GridView::widget([
- 'dataProvider' => $dataProvider,
- //'filterModel' => $searchModel,
- 'columns' => [
- 'id',
- [
- 'attribute'=>'language',
- 'filter'=> $languages
- ],
- [
- 'attribute'=>'category',
- 'filter'=> $categories
- ],
- 'sourceMessage',
- 'translation:ntext',
- ['class' => 'yii\grid\ActionColumn', 'template'=>'{update} {delete}'],
- ],
- ]); ?>
- </div>
- </div>
|