{% extends 'base_widget.html.twig' %} {% block title %}WidgetController{% endblock %} {% block body %}
{% for item in reviewSources %}
{{item.name}}
{% for i in 1..5 %} {% if item.rating_total|ceil >= i %} {% if item.isFloat and item.rating_total|ceil == i %} {% else %} {% endif %} {% else %} {% endif %} {% endfor %}

{% if item.count_row_total > 0 %} {{ item.count_row_total }} оценок. {% endif %} В среднем - {{ rFloat(item.rating_total) }}

{% endfor %}
{% endblock %}