{% extends "base.html" %} {% load crispy_forms_tags %} {% load i18n %} {% load custom_tags %} {% block title %}{% trans 'View' %}{% endblock %} {% block content %}

{{ recipe.name }}

{% if recipe.all_tags %} {{ recipe.all_tags }}
{% endif %}
{% trans 'Ingredients' %}
{% for i in ingredients %} {{ i.amount }} {{ i.unit }} {{ i.ingredient.name }}
{% endfor %}


{{ recipe.instructions | markdown | safe }} {% endblock %}