{% load i18n %}
{% trans "Rating" %}
star {{ avg_rating|floatformat:1 }} ({{ rating_count }} {% trans "vote" %}{% if rating_count != 1 %}s{% endif %})
{% if user.is_authenticated %}
{% if user_rating %}
check_circle {% trans "Your rating:" %} {{ user_rating.score }}
{% if user_rating.comment %}

{{ user_rating.comment }}

{% endif %} {% endif %}
{% csrf_token %}
{{ user_rating.score|default:"5.0" }}
{% else %}

{% trans "Log in" %} {% trans "to rate this recipe." %}

{% endif %} {% if all_ratings %}
{% trans "All Ratings" %}
{% for rating in all_ratings %}
{{ rating.user.username }} {{ rating.score|floatformat:1 }} star
{% if rating.comment %}

{{ rating.comment }}

{% endif %}
{% endfor %}
{% endif %}