{% 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 %}
{% endif %}
{{ recipe.body|linebreaks }}
{% if recipe.preperation_time or recipe.cooking_time %}
{% if recipe.preperation_time %}
{% trans "Preperation time" %}: {{recipe.preperation_time }} {% trans "minutes" %} |
{% endif %}
{% if recipe.cooking_time %}
{% trans "Cooking time" %}: {{recipe.cooking_time }} {% trans "minutes" %} |
{% endif %}
{% trans "Total time" %}: {{recipe.total_time }} {% trans "minutes" %} |
{% endif %}
{% trans "Ingredients" %}
{{ recipe.ingredients|linebreaksli }}
{% trans "Directions" %}
{{ recipe.directions|linebreaks }}
{% if bottom %}
{% endif %}
{% endblock %}