{% set stars %}
{% for grade in range(1, 5) %} {{ icon('star', html_classes('w-4 h-4', { 'text-gray-200': (rating/100)|round < grade, 'text-primary': (rating/100)|round >= grade })) }} {% endfor %}
{% endset %} {% if teamer is not null and rating and is_granted('ROLE_ADMINISTRATIVE') %} {{ stars }} {% else %} {{ stars }} {% endif %}