{% extends "base_pico.html" %} {% block title %}{{ recipe.title }} — Sandwitch{% endblock %} {% block content %} {% load i18n markdown_extras %}
{% if recipe.image %} {{ recipe.title }} {% endif %}
{% trans "Description" %}
{{ recipe.title }} {% if recipe.uploaded_by %} {% trans "Uploaded by" %}: {{ recipe.uploaded_by.get_full_name|default:recipe.uploaded_by.username }} {% endif %}

{% 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 %}
{% for tag in recipe.tags.all %} {{ tag.name }} {% endfor %}

{% 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 %}
{% csrf_token %}
{% trans "What would you rate this sandwich?" %} {% if rating_form.score.errors %} {% endif %}

{% endif %} {% else %}

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

{% endif %}
{% if user.is_authenticated and user.is_staff %} {% endif %}
{% endblock %}