diff --git a/templates/recipe.html b/templates/recipe.html
index bda1b65..bebd15c 100644
--- a/templates/recipe.html
+++ b/templates/recipe.html
@@ -6,16 +6,19 @@
+ back
{{recipe.title}}
{% for part in recipe.parts %}
- Ingredients
+ {{part.title}}
+ Ingredients
{% for ing in part.ingredients %}
{{ing.amount}} {{ing.unit.name}} {{ ing.name }}
{% endfor %}
- Steps
+ Steps
{% for step in part.steps %}
{{ step }}
{% endfor %}
+
{% endfor %}