src/Modules/Reviews/Templates/includes/rating.include.html.twig line 1

Open in your IDE?
  1. <div class="review_rating">
  2.     {% set maxStars=5 %}
  3.     {% set count=1 %}
  4.     {% for i in 1..review.rating %}
  5.         <i class="star bi bi-star-fill"></i>
  6.         {% set count=i %}
  7.     {% endfor %}
  8.     {% if review.rating|substr(2,3) == maxStars %}
  9.         <i class="star bi bi-star-half"></i>
  10.         {% set count=count+1 %}
  11.     {% endif %}
  12.     {% if count < maxStars %}
  13.         {% for rest in (count+1)..maxStars %}
  14.             <i class="star bi bi-star"></i>
  15.         {% endfor %}
  16.     {% endif %}
  17. </div>