door card pass: add doormanagerlog view

This commit is contained in:
Schneider Roland
2023-02-28 21:48:30 +01:00
parent 7c610b50ab
commit df69ec83d3
7 changed files with 233 additions and 5 deletions

View File

@@ -0,0 +1,33 @@
<?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
/* @var $this yii\web\View */
/* @var $model backend\models\InventorySearch */
/* @var $form yii\widgets\ActiveForm */
?>
<div class="inventory-search">
<?php $form = ActiveForm::begin([
'action' => ['index'],
'method' => 'get',
]); ?>
<?= $form->field($model, 'searchTerm') ?>
<!-- --><?php //= $form->field($model, 'id_user') ?>
<!---->
<!-- --><?php //= $form->field($model, 'created_at') ?>
<!---->
<!-- --><?php //= $form->field($model, 'updated_at') ?>
<div class="form-group">
<?= Html::submitButton(Yii::t('common/inventory', 'Search'), ['class' => 'btn btn-primary']) ?>
<?= Html::resetButton(Yii::t('common/inventory', 'Reset'), ['class' => 'btn btn-default']) ?>
</div>
<?php ActiveForm::end(); ?>
</div>