=
$form->field($portfolio, 'city')->widget(Select2::classname(), [
- 'options' => ['placeholder' => 'Выбор города ...'],
+ 'options' => ['class' => 'Выбор города ...'],
'pluginOptions' => [
'allowClear' => true,
'minimumInputLength' => 3,
@@ -147,3 +162,8 @@ use yii\web\JsExpression;
end();
?>
+
\ No newline at end of file
diff --git a/frontend/views/accounts/_vacancy_form.php b/frontend/views/accounts/_vacancy_form.php
index ed85dc4..20a6b7a 100644
--- a/frontend/views/accounts/_vacancy_form.php
+++ b/frontend/views/accounts/_vacancy_form.php
@@ -11,10 +11,10 @@
use yii\helpers\Html;
use yii\widgets\ActiveForm;
- $this->title = 'Мой профиль';
+ $this->title = 'Вакансии';
$this->params[ 'breadcrumbs' ][] = $this->title;
?>
-
'requirements', 'item_id' => $vacancy->vacancy_id, 'model' => 'common\models\Vacancy', 'language' => 'ru',
]
); ?>
+
-= Html::submitButton('Добавить') ?>
end();
diff --git a/frontend/views/accounts/contacts.php b/frontend/views/accounts/contacts.php
index 577feab..79a0969 100755
--- a/frontend/views/accounts/contacts.php
+++ b/frontend/views/accounts/contacts.php
@@ -12,7 +12,14 @@
$user = \Yii::$app->user->identity;
?>
-
diff --git a/frontend/views/accounts/portfolio.php b/frontend/views/accounts/portfolio.php
index b42caae..60f0d0b 100755
--- a/frontend/views/accounts/portfolio.php
+++ b/frontend/views/accounts/portfolio.php
@@ -35,13 +35,15 @@
'class' => ActionColumn::className(),
'buttons' => [
'update' => function($url, $model, $key) {
- return Html::a('Update', [
+ return Html::a('

', [
'portfolio-update',
'id' => $model->portfolio_id,
+ ],[
+ 'title' => 'Редактировать',
]);
},
'delete' => function($url, $model, $key) {
- return Html::a('Delete', [
+ return Html::a('

', [
'portfolio-delete',
'id' => $model->portfolio_id,
], [
diff --git a/frontend/views/accounts/projects.php b/frontend/views/accounts/projects.php
index 033f8b7..d61a4e2 100755
--- a/frontend/views/accounts/projects.php
+++ b/frontend/views/accounts/projects.php
@@ -12,11 +12,12 @@
$this->title = 'Проекты';
$this->params[ 'breadcrumbs' ][] = $this->title;
?>
-
= $this->title ?>
+
= $this->title ?>
= Html::a(Yii::t('app', 'Добавить'), [ 'projects-create' ], [ 'class' => 'btn btn-success' ]) ?>
= GridView::widget([
+ 'options' => ['class'=>'style admin-all-pages-wr'],
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
@@ -35,13 +36,15 @@
'class' => ActionColumn::className(),
'buttons' => [
'update' => function($url, $model, $key) {
- return Html::a('Update', [
+ return Html::a('

', [
'projects-update',
'id' => $model->project_id,
+ ],[
+ 'title' => 'Редактировать',
]);
},
'delete' => function($url, $model, $key) {
- return Html::a('Delete', [
+ return Html::a('

', [
'projects-delete',
'id' => $model->project_id,
], [
diff --git a/frontend/views/accounts/service.php b/frontend/views/accounts/service.php
index 97a1406..64f9f2b 100755
--- a/frontend/views/accounts/service.php
+++ b/frontend/views/accounts/service.php
@@ -10,63 +10,186 @@
use yii\helpers\Html;
use yii\widgets\ActiveForm;
- $this->title = 'Мой профиль';
+ $this->title = 'Услуги';
$this->params[ 'breadcrumbs' ][] = $this->title;
?>
-
= $this->title ?>
-
Рекомендуем детально заполнить для исполнителя. Это сильно влияет на количество заказов.
-
-= $form->field($user_info, 'salary', [
- 'template' => "{label}: от {input} за час\n{hint}\n{error}",
- 'options' => [ 'class' => 'form-inline' ],
-])
- ->label('Стоимость работ')
- ->textInput() ?>
-= $form->field($user, 'specializationInput')
- ->label('Специализация услуг')
- ->checkboxList($specialization) ?>
-= $form->field($user_info, 'guarantee', [
- 'template' => "{label}: {input} лет\n{hint}\n{error}",
- 'options' => [ 'class' => 'form-inline' ],
-])
- ->label('Гарантия качества работ')
- ->textInput() ?>
-= $form->field($user_info, 'contract', [ 'options' => [ 'class' => 'form-inline' ] ])
- ->label('Работа по договору')
- ->radioList([
- 0 => 'Да',
- 1 => 'Нет',
- ], [ 'class' => 'form-control-static' ]) ?>
-= $form->field($user_info, 'estimate', [ 'options' => [ 'class' => 'form-inline' ] ])
- ->label('Предоставляете смету')
- ->radioList([
- 0 => 'Да',
- 1 => 'Нет',
- ], [ 'class' => 'form-control-static' ]) ?>
-= $form->field($user_info, 'purchase', [ 'options' => [ 'class' => 'form-inline' ] ])
- ->label('Делаете сами закупку материалов')
- ->radioList([
- 0 => 'Да',
- 1 => 'Нет',
- ], [ 'class' => 'form-control-static' ]) ?>
-= $form->field($user_info, 'delivery', [ 'options' => [ 'class' => 'form-inline' ] ])
- ->label('Занимаетесь сами доставкой материалов')
- ->radioList([
- 0 => 'Да',
- 1 => 'Нет',
- ], [ 'class' => 'form-control-static' ]) ?>
-= $form->field($user_info, 'prepayment', [
- 'template' => "{label}: {input} %\n{hint}\n{error}",
- 'options' => [ 'class' => 'form-inline' ],
-])
- ->label('Минимальная предоплата за работы')
- ->textInput() ?>
-= $form->field($user, 'paymentInput')
- ->label('Способы оплаты')
- ->checkboxList($payment) ?>
-= Html::submitButton('Обновить') ?>
-end();
-?>
+
+
+
+ = $this->title ?> |
+ Рекомендуем детально заполнить для исполнителя. Это сильно влияет на количество заказов. |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ end();
+ ?>
+
\ No newline at end of file
diff --git a/frontend/views/accounts/vacancy.php b/frontend/views/accounts/vacancy.php
index f35647b..b108b20 100644
--- a/frontend/views/accounts/vacancy.php
+++ b/frontend/views/accounts/vacancy.php
@@ -12,11 +12,12 @@
$this->title = 'Вакансии';
$this->params[ 'breadcrumbs' ][] = $this->title;
?>
-
= $this->title ?>
-
+
= $this->title ?>
+
= Html::a(Yii::t('app', 'Добавить'), [ 'vacancy-create' ], [ 'class' => 'btn btn-success' ]) ?>
-
+
= GridView::widget([
+ 'options' => ['class'=>'style admin-all-pages-wr'],
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
@@ -30,10 +31,10 @@
'class' => ActionColumn::className(),
'buttons' => [
'update' => function($url, $model, $key) {
- return Html::a('Update', ['vacancy-update', 'id' => $model->vacancy_id]);
+ return Html::a('

', ['vacancy-update', 'id' => $model->vacancy_id]);
},
'delete' => function($url, $model, $key) {
- return Html::a('Delete', ['vacancy-delete', 'id' => $model->vacancy_id], [
+ return Html::a('

', ['vacancy-delete', 'id' => $model->vacancy_id], [
'title' => 'Удалить',
'aria-label' => 'Удалить',
'data-confirm' => 'Вы уверены, что хотите удалить этот элемент?',
diff --git a/frontend/web/css/style.css b/frontend/web/css/style.css
index 0f5b6b0..8e03cf5 100755
--- a/frontend/web/css/style.css
+++ b/frontend/web/css/style.css
@@ -4616,6 +4616,7 @@ input.custom-radio + label, input.custom-check + label {
cursor: pointer;
margin-left: 6px;
display: inline;
+ font-weight: normal;
}
input.custom-radio:checked + label, input.custom-check:checked + label {
color: #0072bc;
@@ -5050,6 +5051,9 @@ input.disabled.admin-check:checked + label, input.disabled.admin-check:checked +
color: #fff;
}
+
+
+
/***login***/
.section-box.admin-page {margin-top: 30px}
.login-right-column {
@@ -5109,9 +5113,7 @@ ul.menu-admin li.logout-li, ul.menu-admin li.logout-li a, ul.menu-admin li:last-
}
-.login-left-column-title {border-bottom: 1px solid #dbdbdb; margin-top: 15px; padding-bottom: 23px;}
-.login-left-column-title span {}
-.login-left-column-title p {font-size: 13px; color: #b7b7b7}
+.login-left-column-title {border-bottom: 1px solid #dbdbdb; margin-top: 15px; padding-bottom: 27px;}
.login-left-column-title, .login-left-column-title h1{font-size: 18px}
.form-group{margin-bottom: 0}
.border-general {
@@ -5637,7 +5639,11 @@ a {color: #0072bc}
.admin-all-pages-wr table .form-control:focus {border: 1px solid #dcdcdc;box-shadow: 1px 2px 2px 0px rgba(215, 215, 215, 0.75) inset; transition: 0.1s; outline: none}
.admin-all-pages-wr table tbody tr td {padding: 4px 8px; vertical-align: middle}
.admin-all-pages-wr table {font-size: 13px}
-.admin-all-pages-wr .table > thead > tr > th {vertical-align: middle}
+.admin-all-pages-wr table > thead > tr > th {vertical-align: middle}
+.admin-all-pages-wr table tr td:last-child{width: 52px; padding: 0 8px}
+.admin-all-pages-wr table tr td:last-child a{margin-left: 5px}
+.admin-all-pages-wr table tr td:last-child a:first-child{margin-left: 0}
+.admin-all-pages-wr table .empty{font-size: 15px; margin: 10px 0}
.admin-all-pages-wr .pagination {float: right}
.admin-all-pages-wr .pagination > li > a, .pagination > li > span {
background: none;
@@ -5650,12 +5656,63 @@ a {color: #0072bc}
.admin-all-pages-wr .pagination > li.active > a, .admin-all-pages-wr .pagination > li.active > span {
color: inherit;
}
+
.admin-all-pages-wr .pagination > li.active a:hover, .admin-all-pages-wr .pagination > li.active span:hover {
color: inherit;
background: none;
}
+.admin-all-pages-wr .pagination > li.active > a:focus, .admin-all-pages-wr .pagination > li.active > span:focus {background: none}
+.admin-all-pages-wr .summary{margin-bottom: 10px}
+.admin-blog-min-img {
-
-
-
+}
+.admin-blog-min-img .file-uploader-block {width: 340px}
+.admin-blog-min-img .tst {
+ width: 100%;
+ height: 260px;
+ background: #f1f1f1;
+}
+.admin-blog-min-img .admin-avatar-pattern-wr {
+ width: 340px;
+}
+.admin-blog-min-img .admin-avatar-pattern {
+ width: 340px;
+ height: 260px;
+ background: none;
+}
+.admin-blog-min-img .admin-ava-wr {
+ width: 340px;
+ height: 260px;
+}
+.admin-blog-min-img .uploader-button {
+ width: auto;
+ padding: 0 10px;
+ margin-left: 0}
+.admin-blog-min-img #cover_buttons_block {
+ position: absolute;
+ height: 29px;
+ float: left;
+ top: 260px;
+ left: 199px;
+}
+.admin-blog-min-img .admin-ava-wr {
+ background: none;
+}
+.admin-save-btn.admin-save-btn-fix-line {margin-top: 19px}
+.admin-save-btn.admin-save-btn-fix-line button {
+ line-height: normal;
+}
+.custom-input-2-margin-r {
+ margin-right: 10px;
+}
+.admn-input-txt {
+ font-size: 13px;
+}
+.admin-who-check-payment .custom-check + label span {
+ margin-left: 0;
+}
+.admin-who-check-payment .custom-check + label:hover {border-bottom: 1px solid #333333}
+.admin-service-wr .input-blocks-wrapper {
+ margin-top: 24px;
+}
\ No newline at end of file
--
libgit2 0.21.4