_search.php 692 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\ActiveForm;
  4. /* @var $this yii\web\View */
  5. /* @var $model app\models\DocumentsToTheUserSearch */
  6. /* @var $form yii\widgets\ActiveForm */
  7. ?>
  8. <div class="documents-to-the-user-search">
  9. <?php $form = ActiveForm::begin([
  10. 'action' => ['index'],
  11. 'method' => 'get',
  12. ]); ?>
  13. <?= $form->field($model, 'id') ?>
  14. <?= $form->field($model, 'title') ?>
  15. <?= $form->field($model, 'files') ?>
  16. <div class="form-group">
  17. <?= Html::submitButton('Search', ['class' => 'btn btn-primary']) ?>
  18. <?= Html::resetButton('Reset', ['class' => 'btn btn-default']) ?>
  19. </div>
  20. <?php ActiveForm::end(); ?>
  21. </div>