add_a_test_task_completion_date_to_user_card
This commit is contained in:
@ -21,7 +21,7 @@ class UserCardSearch extends UserCard
|
||||
{
|
||||
return [
|
||||
[['id', 'gender', 'status'], 'integer'],
|
||||
[['fio', 'passport', 'photo', 'email', 'dob', 'created_at', 'updated_at', 'city'], 'safe'],
|
||||
[['fio', 'passport', 'photo', 'email', 'dob', 'created_at', 'updated_at', 'city', 'test_task_getting_date', 'test_task_complete_date'], 'safe'],
|
||||
['skills', 'each', 'rule' => ['integer']],
|
||||
];
|
||||
}
|
||||
@ -83,6 +83,8 @@ class UserCardSearch extends UserCard
|
||||
'city' => $this->city,
|
||||
'created_at' => $this->created_at,
|
||||
'updated_at' => $this->updated_at,
|
||||
'test_task_getting_date' => $this->test_task_getting_date,
|
||||
'test_task_complete_date' => $this->test_task_complete_date,
|
||||
]);
|
||||
|
||||
$query->andFilterWhere(['like', 'fio', $this->fio])
|
||||
|
@ -26,7 +26,7 @@ use yii\widgets\ActiveForm;
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" style="padding-bottom: 15px">
|
||||
<div class="row" style="padding-bottom: 15px">add_a_test_task_completion_date_to_ucer_card
|
||||
<div class="imgUpload col-xs-6">
|
||||
<div class="media__upload_img"><img src="<?= $model->photo; ?>" width="100px"/></div>
|
||||
<?php
|
||||
@ -176,6 +176,28 @@ use yii\widgets\ActiveForm;
|
||||
'language' => 'ru',
|
||||
]
|
||||
]); ?>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-6">
|
||||
<?= $form->field($model, 'test_task_getting_date')->input(
|
||||
'date',
|
||||
[
|
||||
'language' => 'en',
|
||||
"data-format" => "DD MMMM YYYY",
|
||||
]
|
||||
) ?>
|
||||
</div>
|
||||
<div class="col-xs-6">
|
||||
<?= $form->field($model, 'test_task_complete_date')->input(
|
||||
'date',
|
||||
[
|
||||
'language' => 'en',
|
||||
"data-format" => "DD MMMM YYYY",
|
||||
]
|
||||
) ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<?= $form->field($model, 'achievements')->widget(Select2::class,
|
||||
|
@ -88,7 +88,15 @@ $this->params['breadcrumbs'][] = $this->title;
|
||||
[
|
||||
'attribute' => 'vc_text',
|
||||
'format' => 'raw'
|
||||
]
|
||||
],
|
||||
[
|
||||
'attribute' => 'test_task_getting_date',
|
||||
'format' => ['datetime', 'php:d.m.Y']
|
||||
],
|
||||
[
|
||||
'attribute' => 'test_task_complete_date',
|
||||
'format' => ['datetime', 'php:d.m.Y']
|
||||
],
|
||||
],
|
||||
]) ?>
|
||||
|
||||
|
Reference in New Issue
Block a user