| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- use yii\helpers\Html;
- use yii\widgets\ActiveForm;
- /* @var $this yii\web\View */
- /* @var $model app\models\PublishingSearch */
- /* @var $form yii\widgets\ActiveForm */
- ?>
- <div class="publishing-search">
- <?php $form = ActiveForm::begin([
- 'action' => ['index'],
- 'method' => 'get',
- ]); ?>
- <?= $form->field($model, 'id') ?>
- <?= $form->field($model, 'name') ?>
- <?= $form->field($model, 'user_id') ?>
- <?= $form->field($model, 'lot_id') ?>
- <?= $form->field($model, 'date_start') ?>
- <?php // echo $form->field($model, 'date_stop') ?>
- <?php // echo $form->field($model, 'last_price') ?>
- <?php // echo $form->field($model, 'last_user') ?>
- <?php // echo $form->field($model, 'last_date') ?>
- <?php // echo $form->field($model, 'type') ?>
- <?php // echo $form->field($model, 'status') ?>
- <div class="form-group">
- <?= Html::submitButton(Yii::t('app', 'Search'), ['class' => 'btn btn-primary']) ?>
- <?= Html::resetButton(Yii::t('app', 'Reset'), ['class' => 'btn btn-default']) ?>
- </div>
- <?php ActiveForm::end(); ?>
- </div>
|