Files
myep-team/templates/components/rating_stars.html.twig
T

5 lines
231 B
Twig

<div class="inline-flex items-center">
{% for grade in range(1, 5) %}
{{ icon('star', html_classes('w-4 h-4', { 'text-gray-200': rating < grade * 100, 'text-primary': rating >= grade * 100 })) }}
{% endfor %}
</div>