bdf3e361
Виталий
tokar commit
|
14
15
16
17
18
19
20
21
22
23
24
25
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
<div class="input-blocks-wrapper">
<div class="input-blocks">
<?= $form->field ($model, '[' . $index . ']name')
->label ('Название')
->textInput (['class'=> 'custom-input-2']);
?>
</div>
</div>
<div class="input-blocks-wrapper">
<div class="input-blocks">
<?= $form->field ($model, '[' . $index . ']link')
->label ('Ссылка на компанию на сайте МФП')
->textInput (['class'=> 'custom-input-2']);
?>
</div>
</div>
<div class="input-blocks-wrapper">
<div class="input-blocks">
<?= $form->field ($model, '[' . $index . ']date_start')
->label ('Дата начала работы')
->widget (DatePicker::className (), ['options' => ['class' => 'custom-input-2'], 'language' => 'ru', 'dateFormat' => 'dd-MM-yyyy', 'clientOptions' => ['changeYear' => true, 'yearRange' => 'c-20:c', 'changeMonth' => true]]);
?>
</div>
</div>
<div class="input-blocks-wrapper">
<div class="input-blocks">
<?= $form->field ($model, '[' . $index . ']date_end')
->label ('Дата окончания работы')
->widget (DatePicker::className (), ['options' => ['class' => 'custom-input-2'], 'language' => 'ru', 'dateFormat' => 'dd-MM-yyyy', 'clientOptions' => ['changeYear' => true, 'yearRange' => 'c-20:c', 'changeMonth' => true]]);
?>
</div>
</div>
<div class="input-blocks-wrapper">
<div class="input-blocks">
<?= $form->field ($model, '[' . $index . ']position')
->label ('Должность')
->textInput (['class'=> 'custom-input-2']);
?>
</div>
</div>
<div class="input-blocks-wrapper admin-quantity-project">
<div class="input-blocks">
<?= $form->field ($model, '[' . $index . ']total_count')
->label ('Количество проектов, в которых принимали участие')
->textInput (['class'=> 'custom-input-2 custom-input-2-date','type'=>'number']);
?>
<div class="fix-quantity-project">
<?= $form->field ($model, '[' . $index . ']complete_count')
->label ('из них реализовано')
->textInput (['class'=> 'custom-input-2 custom-input-2-date','type'=>'number']);
?>
</div>
</div>
</div>
|