title = Yii::t('app', 'Список префиксов поставщиков');
$this->params['breadcrumbs'][] = $this->title;
?>
= Html::encode($this->title) ?>
= Html::a(Yii::t('app', 'Create Importers Prefix'), ['create'], ['class' => 'btn btn-success']) ?>
render('_search', ['model' => $searchModel]); ?>
= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
'importer_id',
'brand',
'prefix',
'timestamp',
['class' => 'yii\grid\ActionColumn',
'template' => '{update},{delete}'],
],
]); ?>