Blame view
resources/views/worker.blade.php
20.6 KB
a13ce8670 Обновление проект... |
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 |
@extends('layout.frontend', ['title' => 'Карточка соискателя - РекаМоре']) @section('scripts') <script> console.log('Test system'); $(document).on('change', '#jobs', function() { var val = $(this).val(); var main_oskar = $('#main_ockar'); console.log('Code='+val); console.log('Click change...'); $.ajax({ type: "GET", url: "", data: "job="+val, success: function (data) { console.log('Выбор сделан!'); console.log(data); main_oskar.html(data); }, headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') }, error: function (data) { data = JSON.stringify(data); console.log('Error: ' + data); } }); }); </script> |
492296b6f Коммит по итогу п... |
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
<script> $(document).on('click', '.js_it_button', function() { var this_ = $(this); var code_user_id = this_.attr('data-uid'); var code_to_user_id = this_.attr('data-tuid'); var code_vacancy = this_.attr('data-vacancy'); var user_id = $('#_user_id'); var to_user_id = $('#_to_user_id'); var vacancy = $('#_vacancy'); console.log('code_to_user_id='+code_to_user_id); console.log('code_user_id='+code_user_id); console.log('code_vacancy='+code_vacancy); console.log('Клик на кнопке...'); user_id.val(code_user_id); to_user_id.val(code_to_user_id); vacancy.val(code_vacancy); }); </script> |
bfc7d8856 Финальные изменения |
52 |
@include('js.favorite-worker') |
a13ce8670 Обновление проект... |
53 54 55 56 57 58 59 60 61 62 63 |
@endsection @section('content') <section class="thing"> <div class="container"> <ul class="breadcrumbs thing__breadcrumbs"> <li><a href="{{ route('index') }}">Главная</a></li> <li><a href="{{ route('bd_resume') }}">База резюме</a></li> <li><b>@if (isset($Query[0]->users)) {{ $Query[0]->users->surname." ".$Query[0]->users->name_man." ".$Query[0]->users->surname2 }} @else Неизвестно @endif</b></li> </ul> <div class="thing__profile"> |
f8a3cafe5 диалоговые пробле... |
64 |
<img src="@if (isset($Query[0]->photo)) {{ asset(Storage::url($Query[0]->photo)) }} @else {{ asset('images/default_man.jpg') }} @endif" alt="" class="main__resume-base-body-item-photo"> |
a13ce8670 Обновление проект... |
65 66 67 68 69 70 71 72 73 74 75 |
<div class="thing__profile-body"> <h1 class="thing__title">@if (isset($Query[0]->users)) {{ $Query[0]->users->surname." ".$Query[0]->users->name_man." ".$Query[0]->users->surname2 }} @else Неизвестно @endif</h1> <p class="thing__text">Сложно сказать, почему ключевые особенности структуры проекта рассмотрены исключительно в разрезе маркетинговых и финансовых предпосылок.</p> <div class="thing__bottom"> <a class="button" href="{{ route('resume_download', ['worker' => $Query[0]->id]) }}"> Скачать резюме <svg> <use xlink:href="{{ asset('images/sprite.svg#download') }}"></use> </svg> </a> |
2726f0123 Коммит по багам д... |
76 |
<button type="button" class="like js-toggle js_box_favorit {{ \App\Classes\LikesClass::get_status_worker($Query[0]) }}" data-val="{{ $Query[0]->id }}" id="elem{{ $Query[0]->id }}"> |
a13ce8670 Обновление проект... |
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
<svg> <use xlink:href="{{ asset('images/sprite.svg#heart') }}"></use> </svg> </button> </div> </div> </div> </div> </section> <main class="main"> <div class="container"> <div class="main__resume-profile"> <div class="main__content"> <div class="main__spoiler"> <button type="button" class="main__spoiler-toper js-toggle active"> Основная информация</button> <div class="main__spoiler-body"> <table class="main__table"> <tbody> <tr> <td>Имя:</td> <td><b>{{ $Query[0]->users->name_man }}</b></td> </tr> <tr> <td>Должность:</td> |
ac8b91cfd Обновление системы. |
103 104 105 |
<td> @if ($Query[0]->job_titles->count()) @foreach ($Query[0]->job_titles as $it) |
2726f0123 Коммит по багам д... |
106 |
@if ($it->is_remove == 0) |
ac8b91cfd Обновление системы. |
107 |
<b>{{ $it->name }}</b> |
2726f0123 Коммит по багам д... |
108 |
@endif |
ac8b91cfd Обновление системы. |
109 110 111 |
@endforeach @endif </td> |
a13ce8670 Обновление проект... |
112 113 114 115 116 117 118 |
</tr> <tr> <td>Телефон:</td> <td><b><a href="tel:{{ $Query[0]->telephone }}">{{ $Query[0]->telephone }}</a></b></td> </tr> <tr> <td>E-mail:</td> |
2726f0123 Коммит по багам д... |
119 |
<td><b><a href="mailto:{{ $Query[0]->email }}">{{ $Query[0]->email }}</a></b></td> |
a13ce8670 Обновление проект... |
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
</tr> <tr> <td>Возраст:</td> <td><b>{{ $Query[0]->old_year }}</b></td> </tr> <tr> <td>Статус:</td> <td><b>{{ $status_work[$Query[0]->status_work] }}</b></td> </tr> <tr> <td>Город проживания:</td> <td><b>{{ $Query[0]->city }}</b></td> </tr> <tr> <td>Уровень английского:</td> <td><b>{{ $Query[0]->en_is }}</b></td> </tr> <tr> <td>Опыт работы:</td> <td><b>{{ $Query[0]->experience }}</b></td> </tr> </tbody> </table> </div> </div> <div class="main__spoiler"> <button type="button" class="main__spoiler-toper js-toggle">Сертификаты / документы</button> <div class="main__spoiler-body"> @if (isset($Query[0]->sertificate)) @if ($Query[0]->sertificate->count()) @foreach($Query[0]->sertificate as $it) <table class="main__table"> <tbody> <tr> <td>Название сертификата:</td> <td><b>{{ $it->name }}</b></td> </tr> <tr> <td>Организация выдавшая документ:</td> <td><b>{{ $it->education }}</b></td> </tr> <tr> <td>Дата начала обучения:</td> <td><b>{{ $it->date_begin }}</b></td> </tr> <tr> <td>Дата конца обучения:</td> <td><b>{{ $it->end_begin }}</b></td> </tr> </tbody> </table> <br> @endforeach @endif @endif </div> </div> <div class="main__spoiler"> <button type="button" class="main__spoiler-toper js-toggle">Опыт работы</button> <div class="main__spoiler-body"> @if (isset($Query[0]->place_worker)) @if ($Query[0]->place_worker->count()) @foreach($Query[0]->place_worker as $it) <table class="main__table"> <tbody> <tr> <td>Должность:</td> <td><b>{{ $it->job_title }}</b></td> </tr> <tr> <td>Опыт работы в танкерном флоте:</td> <td><b>@if($it->tanker==1) Есть @else Нет @endif</b></td> </tr> <tr> <td>Дата начала работы:</td> <td><b>{{ $it->begin_work }}</b></td> </tr> <tr> <td>Дата конца работы:</td> <td><b>{{ $it->end_work }}</b></td> </tr> <tr> <td>Название компании:</td> <td><b>{{ $it->name_company }}</b></td> </tr> <tr> <td>GWT тип</td> <td><b>{{ $it->GWT }}</b></td> </tr> <tr> <td>ГД:</td> <td><b>{{ $it->KBT }}</b></td> </tr> </tbody> </table> <br> @endforeach @endif @endif </div> </div> <div class="main__spoiler"> <button type="button" class="main__spoiler-toper js-toggle">Дополнительные документы</button> <div class="main__spoiler-body"> |
8e4c0bff2 Коммит по срочным... |
229 230 231 232 233 234 235 |
@if ($infoblocks->count()) <table class="main__table"> <tbody> @foreach ($infoblocks as $info) @php $finder = false; @endphp @if (isset($Query[0]->infobloks)) @if ($Query[0]->infobloks->count()) |
a13ce8670 Обновление проект... |
236 |
|
8e4c0bff2 Коммит по срочным... |
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 |
@foreach($Query[0]->infobloks as $it) @if ($info->id == $it->id) <tr> <td><b>{{ $it->name }}</b></td> <td> @if ($it->model_dop_info[0]->status == 0) Не указано @elseif($it->model_dop_info[0]->status==1) В наличии @else Отсутствует @endif </td> </tr> @php $finder = true; @endphp @endif @endforeach @endif @endif @if (!$finder) <tr> <td><b>{{ $info->name }}</b></td> <td> Не указано </td> </tr> @endif @endforeach </tbody> </table> |
a13ce8670 Обновление проект... |
264 265 266 267 |
@endif </div> </div> </div> |
492296b6f Коммит по итогу п... |
268 |
|
a13ce8670 Обновление проект... |
269 270 271 |
<div class="main__resume-profile-about"> <h2 class="main__resume-profile-about-title">О себе</h2> <p class="main__resume-profile-about-text">{{ $Query[0]->text }}</p> |
39f6b321c Коммит по попке и... |
272 273 274 275 276 |
@if (App\Classes\StatusUser::Status()==0) @if ((!Auth()->user()->is_worker) && (Auth()->user()->is_message)) <div class="button main__resume-profile-about-button js_it_button" data-fancybox data-src="#send2" data-vacancy="0" data-uid="{{ $idiot }}" data-tuid="{{ $Query[0]->users->id }}" data-options='{"touch":false,"autoFocus":false}'>Написать сообщение</div> @endif @endif |
a13ce8670 Обновление проект... |
277 278 279 280 |
</div> <div class="main__resume-profile-info"> <h2 class="main__resume-profile-info-title">Данные о прошлых компаниях</h2> <div class="main__resume-profile-info-body"> |
6b9776dfb Вторник работа на... |
281 |
@if ((isset($Query[0]->prev_company)) && ($Query[0]->prev_company->count())) |
a13ce8670 Обновление проект... |
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 |
@foreach ($Query[0]->prev_company as $it) <div class="main__resume-profile-info-body-item"> <h3 class="main__resume-profile-info-body-subtitle">{{ $it->name_company }}</h3> <ul class="main__resume-profile-info-body-inner"> <li> <b>Руководитель</b> <span>{{ $it->direct }}</span> </li> <li> <b>Телефон того, кто может дать рекомендацию</b> <span> @if (!empty($it->telephone)) <a href="tel:{{$it->telephone }}">{{ $it->telephone }}</a> @endif @if (!empty($it->telephone2)) <a href="tel:{{$it->telephone2 }}">{{ $it->telephone2 }}</a> @endif </span> </li> </ul> </div> @endforeach |
6b9776dfb Вторник работа на... |
304 305 306 307 |
@else <div class="main__resume-profile-info-body-item"> <h3 class="main__resume-profile-info-body-subtitle">Нету данных о компании</h3> </div> |
a13ce8670 Обновление проект... |
308 309 310 |
@endif </div> </div> |
6b9776dfb Вторник работа на... |
311 |
|
0ea985223 Коммит по диалога... |
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 |
<div class="main__resume-profile-info"> <h2 class="main__resume-profile-info-title">Количество просмотров страницы: ({{ $stat[0]->lookin }})</h2> </div> <div class="main__resume-profile-info"> <h2 class="main__resume-profile-info-title">Отзывы о работнике ({{ $Query[0]->response->count() }})</h2> <div class="main__resume-profile-info-body"> @if ((isset($Query[0]->response)) && ($Query[0]->response->count())) <div class="main__resume-profile-info-body-item"> <ul class="main__resume-profile-info-body-inner"> @php $i = 1; @endphp @foreach($Query[0]->response as $it) <li> <span><h3>Комментарий №{{$i}}</h3></span> <span><b>Оценка человека: {{ $it->stars }}</b></span> <span><b>Сообщение: </b>{{ $it->message }}</span> </li> @php $i++; @endphp @endforeach </ul> </div> @else <div class="main__resume-profile-info-body-item"> <h3 class="main__resume-profile-info-body-subtitle">Нету комментариев</h3> </div> @endif </div> </div> |
a13ce8670 Обновление проект... |
340 |
<div class="main__resume-profile-review"> |
6b9776dfb Вторник работа на... |
341 342 |
<form action="{{ route('stars_answer') }}" method="POST"> @csrf |
a13ce8670 Обновление проект... |
343 344 345 346 |
<h2 class="main__resume-profile-review-title">Оставить отзыв о работнике</h2> <div class="rate"> <div class="rate__label">Ваша оценка:</div> <div class="rate__stars"> |
6b9776dfb Вторник работа на... |
347 348 349 350 351 352 353 |
<select name="stars" id="stars" class="star-rating js-stars"> <option value="5">5</option> <option value="4">4</option> <option value="3">3</option> <option value="2">2</option> <option value="1" selected>1</option> </select> |
a13ce8670 Обновление проект... |
354 355 |
</div> </div> |
6b9776dfb Вторник работа на... |
356 |
<input type="hidden" name="worker_id" id="worker_id" value="{{ $Query[0]->id }}"/> |
a13ce8670 Обновление проект... |
357 358 |
<div class="main__resume-profile-review-body"> <h3>Ваш отзыв</h3> |
6b9776dfb Вторник работа на... |
359 |
<textarea class="textarea" name="message" id="message" placeholder="Текст отзыва…" required></textarea> |
a13ce8670 Обновление проект... |
360 361 |
<button type="submit" class="button">Оставить отзыв</button> </div> |
6b9776dfb Вторник работа на... |
362 |
</form> |
a13ce8670 Обновление проект... |
363 364 365 366 367 368 |
</div> </div> </div> </main> </div> @endsection |