{% sw_extends '@Storefront/storefront/component/review/rating.html.twig' %}
{# Adjusted layout #}
{% block component_review_rating_output %}
<div class="product-review-rating m-0">
{% if full > 0 %}
{% for star in range(1,full) %}
{% sw_include '@Storefront/storefront/component/review/point.html.twig' with {
type: 'full'
} %}
{% endfor %}
{% endif %}
{% if half %}
{% sw_include '@Storefront/storefront/component/review/point.html.twig' with {
type: 'half'
} %}
{% endif %}
{% if blank > 0 %}
{% for star in range(1,blank) %}
{% sw_include '@Storefront/storefront/component/review/point.html.twig' with {
type: 'blank'
} %}
{% endfor %}
{% endif %}
</div>
{% endblock %}