51e0a262
Yarik
test
|
1
|
<?php
|
766bd93b
Yarik
test
|
2
3
4
|
/**
* @var User $user
*/
|
51e0a262
Yarik
test
|
5
|
use common\models\Option;
|
766bd93b
Yarik
test
|
6
7
8
|
use common\models\User;
use common\widgets\FieldEditor;
use yii\helpers\Html;
|
51e0a262
Yarik
test
|
9
10
11
|
use yii\widgets\ActiveForm;
use \common\widgets\MultiLangForm;
|
5f49082a
Yarik
test
|
12
|
$this->title = 'Дополнительные навыки';
|
51e0a262
Yarik
test
|
13
14
|
$this->params['breadcrumbs'][] = $this->title;
?>
|
98a795fb
Виталий
tokar commit
|
15
|
<div class="login-left-column-title"><?= $this->title ?></div>
|
51e0a262
Yarik
test
|
16
|
<?php
|
5f49082a
Yarik
test
|
17
|
$form = ActiveForm::begin();
|
51e0a262
Yarik
test
|
18
|
?>
|
98a795fb
Виталий
tokar commit
|
19
|
<div class="skills-admin-wrapper style">
|
b2743529
Виталий
tokar commit
|
20
|
<div class="input-blocks-wrapper skills-programs">
|
98a795fb
Виталий
tokar commit
|
21
22
23
24
25
26
27
28
29
|
<div class="input-blocks">
<?= FieldEditor::widget (
[
'template' => 'soft', 'item_id' => $user->id, 'model' => 'common\models\User', 'language' => 'ru',
]
); ?>
</div>
</div>
|
b2743529
Виталий
tokar commit
|
30
31
|
<div class="input-blocks-wrapper skills-add-wr education-skills">
|
98a795fb
Виталий
tokar commit
|
32
33
34
35
36
|
<?= FieldEditor::widget (
[
'template' => 'education', 'item_id' => $user->id, 'model' => 'common\models\User', 'language' => 'ru',
]
); ?>
|
b2743529
Виталий
tokar commit
|
37
|
|
98a795fb
Виталий
tokar commit
|
38
39
|
</div>
|
b2743529
Виталий
tokar commit
|
40
41
|
<div class="input-blocks-wrapper skills-add-wr education-skills">
|
98a795fb
Виталий
tokar commit
|
42
43
44
45
46
|
<?= FieldEditor::widget (
[
'template' => 'development', 'item_id' => $user->id, 'model' => 'common\models\User', 'language' => 'ru',
]
); ?>
|
b2743529
Виталий
tokar commit
|
47
|
|
98a795fb
Виталий
tokar commit
|
48
49
|
</div>
|
b2743529
Виталий
tokar commit
|
50
51
|
<div class="input-blocks-wrapper skills-add-wr education-skills">
|
98a795fb
Виталий
tokar commit
|
52
53
54
55
56
|
<?= FieldEditor::widget (
[
'template' => 'courses', 'item_id' => $user->id, 'model' => 'common\models\User', 'language' => 'ru',
]
); ?>
|
b2743529
Виталий
tokar commit
|
57
|
|
98a795fb
Виталий
tokar commit
|
58
59
60
|
</div>
<div class="input-blocks-wrapper">
|
b2743529
Виталий
tokar commit
|
61
62
|
<div class="admin-save-btn skills-save-btn style">
<?= Html::submitButton('Сохранить',['class'=>'input-blocks-wrapper button']) ?>
|
98a795fb
Виталий
tokar commit
|
63
64
65
|
</div>
</div>
</div>
|
5f49082a
Yarik
test
|
66
67
68
|
<?php
$form->end();
?>
|