Blame view

frontend/views/performer/workplace.php 875 Bytes
fbdb1f1c   Yarik   test
1
2
3
4
5
  <?php
  
  use \yii\helpers\Html;
  
  /* @var $this yii\web\View */
4f404e20   Administrator   09.02.16
6
  $this->params['user'] = $user;
fbdb1f1c   Yarik   test
7
8
9
10
11
12
  $this->title = 'My Yii Application';
  ?>
  <div class="performer-vacancy-vacant-title-reclam-wr style">
      <div class="workplace-wr">
          <div class="workplace-title style"><p>Опыт работы</p></div>
          <div class="workplace-experience-wr style">
fbdb1f1c   Yarik   test
13
  
f6ea8941   Administrator   09.02.16
14
15
16
17
18
19
20
21
22
              <?php foreach($user->jobs as $job):?>
                  <div class="workplace-experience-post">
                      <div class="workplace-experience-post-title"><?= $job->name ?></div>
                      <div class="workplace-experience-post-date"><?= $job->date_start ?>-<?= $job->date_end ?> (<?= $job->expTime ?>)</div>
                      <div class="workplace-experience-post-vacancy"><?= $job->position ?></div>
                  </div>
              <?php endforeach; ?>
  
  
fbdb1f1c   Yarik   test
23
  
fbdb1f1c   Yarik   test
24
25
26
          </div>
      </div>
  </div>