{% 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 }}

{% trans 'Comments' %}
{% csrf_token %} {{ form|crispy }}
{% for c in comments %}
{{ c.updated_at }} {% trans 'by' %} {{ c.created_by.username }}
{{ c.text }}

{% endfor %} {% endblock %}