Blame view

frontend/views/user-info/_search.php 1.47 KB
1face72c   Yarik   test
1
2
3
4
5
6
  <?php
  
  use yii\helpers\Html;
  use yii\widgets\ActiveForm;
  
  /* @var $this yii\web\View */
cdb04594   Yarik   test
7
  /* @var $model common\models\UserInfoSearch */
1face72c   Yarik   test
8
9
10
  /* @var $form yii\widgets\ActiveForm */
  ?>
  
cdb04594   Yarik   test
11
  <div class="user-info-search">
1face72c   Yarik   test
12
13
14
15
16
17
  
      <?php $form = ActiveForm::begin([
          'action' => ['index'],
          'method' => 'get',
      ]); ?>
  
cdb04594   Yarik   test
18
      <?= $form->field($model, 'user_id') ?>
1face72c   Yarik   test
19
  
cdb04594   Yarik   test
20
      <?= $form->field($model, 'view_count') ?>
1face72c   Yarik   test
21
  
cdb04594   Yarik   test
22
      <?= $form->field($model, 'busy') ?>
1face72c   Yarik   test
23
  
cdb04594   Yarik   test
24
      <?= $form->field($model, 'date_visit') ?>
1face72c   Yarik   test
25
  
cdb04594   Yarik   test
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
      <?= $form->field($model, 'experience') ?>
  
      <?php // echo $form->field($model, 'rank') ?>
  
      <?php // echo $form->field($model, 'salary') ?>
  
      <?php // echo $form->field($model, 'job') ?>
  
      <?php // echo $form->field($model, 'location') ?>
  
      <?php // echo $form->field($model, 'soft') ?>
  
      <?php // echo $form->field($model, 'user_info_id') ?>
  
      <?php // echo $form->field($model, 'guarantee') ?>
  
      <?php // echo $form->field($model, 'contract') ?>
  
      <?php // echo $form->field($model, 'estimate') ?>
  
      <?php // echo $form->field($model, 'purchase') ?>
  
      <?php // echo $form->field($model, 'delivery') ?>
  
      <?php // echo $form->field($model, 'prepayment') ?>
  
      <?php // echo $form->field($model, 'about') ?>
1face72c   Yarik   test
53
54
55
56
57
58
59
60
61
  
      <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>