Ingredients
-
{% for ingredient in single_recipe.ingredients %}
- {{ ingredient }} {% endfor %}
Instructions
-
{% for instruction in single_recipe.instructions %}
- {{ instruction }} {% endfor %}
{% extends "base.html" %} {% block heading %} {{ single_recipe.title }} {%
endblock %} {% block content %}
Ingredients
{% for ingredient in single_recipe.ingredients %}
Instructions
{% for instruction in single_recipe.instructions %}