{% trans "Description" %}
{% if recipe.description %} {{ recipe.description|convert_markdown|safe }} {% else %}{% trans "No description yet." %}
{% endif %}{% trans "Ingredients" %}
{% if recipe.ingredients %} {{ recipe.ingredients|convert_markdown|safe }} {% else %}{% trans "No ingredients listed." %}
{% endif %}{% trans "Instructions" %}
{% if recipe.instructions %} {{ recipe.instructions|convert_markdown|safe }} {% else %}{% trans "No instructions yet." %}
{% endif %}{% trans "Rating" %}
{% if rating_count %}{% trans "Average:" %} {{ avg_rating|floatformat:1 }} ({{ rating_count }} {% trans "vote" %}{% if rating_count %}s{% endif %})
{% else %}{% trans "No ratings yet." %}
{% endif %} {% if user.is_authenticated %} {% if user_rating %}{% trans "Your rating:" %} {{ user_rating.score }}
{% else %} {% endif %} {% else %}{% trans "Log in" %} {% trans "to rate this recipe." %}
{% endif %}