Blame view

frontend/views/company/_company_common_review.php 829 Bytes
225c5168   Yarik   test
1
2
  <?php
      /**
110087c2   Yarik   test
3
       * @var Comment $model
225c5168   Yarik   test
4
       */
110087c2   Yarik   test
5
      use common\modules\comment\models\Comment;
225c5168   Yarik   test
6
7
8
  
  ?>
  <?php
110087c2   Yarik   test
9
10
11
12
13
14
15
      if(!empty( $model->rating )) {
          ?>
          <div class="rating">
              <!--оценка-->
              <input type="hidden" class="val" value="<?=$model->rating->value?>" />
              <!--количество голосов-->
              <input type="hidden" class="votes" value="1"/>
225c5168   Yarik   test
16
          </div>
110087c2   Yarik   test
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
          <?php
      }
  ?>
  <div class="company-performer-comments-autor">
      Отзыв от:
      <?php
          if(!empty( $model->author )) {
              echo $model->author->name;
          } else {
              echo $model->user_name;
          }
      ?>
  </div>
  <div class="company-performer-comments-txt"><?= $model->text ?></div>
  <a href="#" class="company-comm-see-all"><span>Развернуть</span></a>