34 lines
763 B
PHP
34 lines
763 B
PHP
|
<?php
|
||
|
|
||
|
use yii\helpers\Html;
|
||
|
use yii\widgets\ActiveForm;
|
||
|
|
||
|
/* @var $this yii\web\View */
|
||
|
/* @var $model backend\modules\document\models\DocumentFieldValueSearch */
|
||
|
/* @var $form yii\widgets\ActiveForm */
|
||
|
?>
|
||
|
|
||
|
<div class="document-field-value-search">
|
||
|
|
||
|
<?php $form = ActiveForm::begin([
|
||
|
'action' => ['index'],
|
||
|
'method' => 'get',
|
||
|
]); ?>
|
||
|
|
||
|
<?= $form->field($model, 'id') ?>
|
||
|
|
||
|
<?= $form->field($model, 'field_id') ?>
|
||
|
|
||
|
<?= $form->field($model, 'document_id') ?>
|
||
|
|
||
|
<?= $form->field($model, 'value') ?>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<?= Html::submitButton('Search', ['class' => 'btn btn-primary']) ?>
|
||
|
<?= Html::resetButton('Reset', ['class' => 'btn btn-default']) ?>
|
||
|
</div>
|
||
|
|
||
|
<?php ActiveForm::end(); ?>
|
||
|
|
||
|
</div>
|