_team_form.php
1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
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
<?php
/**
* @var Team $team
* @var string[] $department
* @var string[] $country
*/
use common\models\Team;
use common\widgets\ImageUploader;
use mihaildev\ckeditor\CKEditor;
use yii\helpers\Html;
use yii\jui\DatePicker;
use yii\widgets\ActiveForm;
$this->title = 'Мой профиль';
$this->params[ 'breadcrumbs' ][] = $this->title;
?>
<h1><?= $this->title ?></h1>
<?php
$form = ActiveForm::begin();
?>
<?= $form->field($team, 'lastname')
->textInput() ?>
<?= $form->field($team, 'firstname')
->textInput() ?>
<?= $form->field($team, 'middlename')
->textInput() ?>
<?= $form->field($team, 'link')
->textInput() ?>
<?= $form->field($team, 'position')
->textInput() ?>
<?= $form->field($team, 'department_id')
->dropDownList($department) ?>
<?= $form->field($team, 'experience_from', [ 'template' => "{label}, с {input} года \n{hint}\n{error}" ])
->input('number') ?>
<?= $form->field($team, 'country_id')
->dropDownList($country) ?>
<?= ImageUploader::widget([
'model' => $team,
'field' => 'photo',
'width' => 100,
'height' => 100,
'multi' => false,
'gallery' => $team->photo,
'name' => 'Загрузить фото',
]); ?>
<?= Html::submitButton('Добавить') ?>
<?php
$form->end();
?>