_search.php 1.06 KB
<?php

use yii\helpers\Html;
use yii\widgets\ActiveForm;

/* @var $this yii\web\View */
/* @var $model common\models\DetailsSearch */
/* @var $form yii\widgets\ActiveForm */
?>

<div class="details-search">

    <?php $form = ActiveForm::begin([
        'action' => ['index'],
        'method' => 'get',
    ]); ?>

    <?= $form->field($model, 'ID') ?>

    <?= $form->field($model, 'IMPORT_ID') ?>

    <?= $form->field($model, 'BRAND') ?>

    <?= $form->field($model, 'ARTICLE') ?>

    <?= $form->field($model, 'FULL_ARTICLE') ?>

    <?php // echo $form->field($model, 'PRICE') ?>

    <?php // echo $form->field($model, 'DESCR') ?>

    <?php // echo $form->field($model, 'BOX') ?>

    <?php // echo $form->field($model, 'ADD_BOX') ?>

    <?php // echo $form->field($model, 'GROUP') ?>

    <?php // echo $form->field($model, 'timestamp') ?>

    <div class="form-group">
        <?= Html::submitButton('Search', ['class' => 'btn btn-primary']) ?>
        <?= Html::resetButton('Reset', ['class' => 'btn btn-default']) ?>
    </div>

    <?php ActiveForm::end(); ?>

</div>