{% extends "base.html" %} {% load i18n get_placeholder_tag linebreaksli thumbnail %} {% block content %} {% get_placeholder recipe.top as top %} {% get_placeholder recipe.aside as aside %} {% get_placeholder recipe.bottom as bottom %} {% if top %}
{{ top }}
{% endif %}

{{ recipe.title }}

{{ recipe.title }} {{ recipe.body|linebreaks }} {% if recipe.preperation_time or recipe.cooking_time %} {% if recipe.preperation_time %} {% endif %} {% if recipe.cooking_time %} {% endif %}
{% trans "Preperation time" %}: {{recipe.preperation_time }} {% trans "minutes" %}{% trans "Cooking time" %}: {{recipe.cooking_time }} {% trans "minutes" %}{% trans "Total time" %}: {{recipe.total_time }} {% trans "minutes" %}
{% endif %}

{% trans "Ingredients" %}

    {{ recipe.ingredients|linebreaksli }}

{% trans "Directions" %}

{{ recipe.directions|linebreaks }}
{% if bottom %}
{{ bottom }}
{% endif %} {% endblock %}