access - модуль

This commit is contained in:
2019-10-22 18:03:40 +03:00
parent 562c4a925e
commit 34dd9f3f37
21 changed files with 1790 additions and 524 deletions

View File

@ -0,0 +1,31 @@
<?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
/* @var $this yii\web\View */
/* @var $model app\modules\accesses\models\AccessesSearch */
/* @var $form yii\widgets\ActiveForm */
?>
<div class="accesses-search">
<?php $form = ActiveForm::begin([
'action' => ['index'],
'method' => 'get',
]); ?>
<?= $form->field($model, 'id') ?>
<?= $form->field($model, 'name') ?>
<?= $form->field($model, 'access') ?>
<div class="form-group">
<?= Html::submitButton('Поиск', ['class' => 'btn btn-primary']) ?>
<?= Html::resetButton('Сброс', ['class' => 'btn btn-default']) ?>
</div>
<?php ActiveForm::end(); ?>
</div>