{% extends "cookbook/base.html" %} {% block content %}

{{ recipe.name }}

{% block metadata %} {% if recipe.source or recipe.url %} {% endif %} {% if recipe.x_yield %} {% endif %} {% if recipe.tags.all %} {% endif %}
Author{{ recipe.author|default:"unknown" }}
Source{{ recipe.source|default:recipe.url }}
Yield{{ recipe.x_yield }}
Tags {% for tag in recipe.tags.all %} {{ tag }} {% endfor %}
{% endblock %} {% block ingredients %}

Ingredients

{% for ingredient_block in recipe.ingredientblock_set.all %}

{{ ingredient_block.name }}

{% if ingredient_block.directions %}

Directions

{{ ingredient_block.directions|safe }}
{% endif %}
{% endfor %} {% endblock %} {% block directions %}

Directions

{{ recipe.directions|safe }}
{% endblock %} {% endblock %}