Blame view

resources/views/worker.blade.php 15.8 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>
bfc7d8856   Андрей Ларионов   Финальные изменения
31
      @include('js.favorite-worker')
a13ce8670   Андрей Ларионов   Обновление проект...
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
  @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">
                  <img src="@isset($Query->photo) {{ asset(Storage::url($Query->photo)) }} @else {{ asset('images/default_man.jpg') }} @endif" alt="" class="thing__profile-photo">
                  <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>
                          <button type="button" class="like js-toggle">
                              <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>
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
82
                                      <td><b>@if (isset($Query[0]->job_titles[0]->name)) {{ $Query[0]->job_titles[0]->name }} @else Не указано @endif</b></td>
a13ce8670   Андрей Ларионов   Обновление проект...
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
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
                                  </tr>
                                  <tr>
                                      <td>Телефон:</td>
                                      <td><b><a href="tel:{{ $Query[0]->telephone }}">{{ $Query[0]->telephone }}</a></b></td>
                                  </tr>
                                  <tr>
                                      <td>E-mail:</td>
                                      <td><b><a href="emailto:{{ $Query[0]->email }}">{{ $Query[0]->email }}</a></b></td>
                                  </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">
  
                              @if (isset($Query[0]->infobloks))
                                  @if ($Query[0]->infobloks->count())
                                      <table class="main__table">
                                          <tbody>
                                          @foreach($Query[0]->infobloks as $it)
                                                  <tr>
                                                      <td>Документ:</td>
                                                      <td><b>{{ $it->name }}</b></td>
                                                  </tr>
                                          @endforeach
                                          </tbody>
                                      </table>
                                  @endif
                              @endif
                          </div>
                      </div>
                  </div>
                  <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>
bfc7d8856   Андрей Ларионов   Финальные изменения
221
                      <!--<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]->id }}"  data-options='{"touch":false,"autoFocus":false}'>Написать сообщение</div>-->
a13ce8670   Андрей Ларионов   Обновление проект...
222
223
224
225
                  </div>
                  <div class="main__resume-profile-info">
                      <h2 class="main__resume-profile-info-title">Данные о прошлых компаниях</h2>
                      <div class="main__resume-profile-info-body">
6b9776dfb   Андрей Ларионов   Вторник работа на...
226
                          @if ((isset($Query[0]->prev_company)) && ($Query[0]->prev_company->count()))
a13ce8670   Андрей Ларионов   Обновление проект...
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
                                  @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   Андрей Ларионов   Вторник работа на...
249
250
251
252
                          @else
                              <div class="main__resume-profile-info-body-item">
                                  <h3 class="main__resume-profile-info-body-subtitle">Нету данных о компании</h3>
                              </div>
a13ce8670   Андрей Ларионов   Обновление проект...
253
254
255
                          @endif
                      </div>
                  </div>
6b9776dfb   Андрей Ларионов   Вторник работа на...
256

a13ce8670   Андрей Ларионов   Обновление проект...
257
                  <div class="main__resume-profile-review">
6b9776dfb   Андрей Ларионов   Вторник работа на...
258
259
                      <form action="{{ route('stars_answer') }}" method="POST">
                      @csrf
a13ce8670   Андрей Ларионов   Обновление проект...
260
261
262
263
                      <h2 class="main__resume-profile-review-title">Оставить отзыв о работнике</h2>
                      <div class="rate">
                          <div class="rate__label">Ваша оценка:</div>
                          <div class="rate__stars">
6b9776dfb   Андрей Ларионов   Вторник работа на...
264
265
266
267
268
269
270
                              <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   Андрей Ларионов   Обновление проект...
271
272
                          </div>
                      </div>
6b9776dfb   Андрей Ларионов   Вторник работа на...
273
                      <input type="hidden" name="worker_id" id="worker_id" value="{{ $Query[0]->id }}"/>
a13ce8670   Андрей Ларионов   Обновление проект...
274
275
                      <div class="main__resume-profile-review-body">
                          <h3>Ваш отзыв</h3>
6b9776dfb   Андрей Ларионов   Вторник работа на...
276
                          <textarea class="textarea" name="message" id="message" placeholder="Текст отзыва&hellip;" required></textarea>
a13ce8670   Андрей Ларионов   Обновление проект...
277
278
                          <button type="submit" class="button">Оставить отзыв</button>
                      </div>
6b9776dfb   Андрей Ларионов   Вторник работа на...
279
                      </form>
a13ce8670   Андрей Ларионов   Обновление проект...
280
281
282
283
284
285
                  </div>
              </div>
          </div>
      </main>
      </div>
  @endsection