Blame view

frontend/views/company/_company_team_review.php 1.03 KB
a020aad3   Yarik   test
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
31
32
33
34
35
36
37
  <?php
      /**
       * @var Comment  $model
       * @var int      $key
       * @var int      $index
       * @var ListView $widget
       */
      use common\modules\comment\models\Comment;
      use yii\helpers\Html;
      use yii\widgets\ListView;
  
  ?>
  <?php
      if(!empty( $model->rating )) {
          ?>
          <div class="rating">
              <!--оценка-->
              <input type="hidden" class="val" value="<?= $model->rating->value ?>"/>
              <!--количество голосов-->
              <input type="hidden" class="votes" value="1"/>
          </div>
          <?php
      }
  ?>
  <?php
      if(!empty( $model->user_id )) {
          ?>
          <div class="company-performer-comments-autor">Отзыв от: <?= $model->author->name ?></div>
          <?php
      } else {
          ?>
          <div class="company-performer-comments-autor">Отзыв от: <?= $model->user_name ?></div>
          <?php
      }
  ?>
  <div class="company-performer-comments-txt"><?= $model->text ?></div>
  <a href="#" class="company-comm-see-all"><span>Развернуть</span></a>