summaryrefslogtreecommitdiff
path: root/greenbox/templates/recipe/recipe_detail.html
blob: 8f1fa1bbd5bc933513265c1064f0d4a36cc4b7b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "base_generic.html" %}
{% load ingredientformat %}

{% block page_title %}{{ object.title }}{% endblock %}
{% block title %}{{ object.title }}{% endblock %}

{% block contents %}
<div id="recipe_description">{{ object.description|linebreaks }}</div>

<h3>Ingredients</h3>
<ul>
{% for ingredient in object.recipeingredient_set.all %}
<li>{{ ingredient.quantity|format_ingredient_quantity }} {{ ingredient.units.abbreviation }} {{ ingredient.ingredient.name }}</li>
{% endfor %}
</ul>

<h3>Directions</h3>
{{ object.instructions|linenumbers|linebreaks }}
{% endblock %}