title = Yii::t('common/account', 'Accounts'); $this->params['breadcrumbs'][] = $this->title; ?>
= Html::a(Yii::t('common/account', 'Create Account'), ['create'], ['class' => 'btn btn-success']) ?>
= /** @noinspection PhpUnhandledExceptionInspection */ GridView::widget([ 'dataProvider' => $dataProvider, 'columns' => [ 'name', [ 'attribute' => 'status', 'value' => 'statusHuman', ], [ 'attribute' => 'type', 'value' => 'typeHuman', ], [ 'attribute' => 'log_card_read_in_reception', 'value' => function($model) { return $model->log_card_read_in_reception == '1' ? 'Igen' : 'Nem'; } ], 'created_at:datetime', 'updated_at:datetime', ['class' => 'yii\grid\ActionColumn', 'template' => RoleDefinition::getRoleTemplate(['admin' => '{view} {update}', 'employee' => '{view}', 'reception' => '{view}']), ], ], ]); ?>