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

{{ recipe.name }}

{{ recipe.style.name }} by {{ recipe.brewer }}

{% if not recipe.steps %}
Unfortunately, we could not find an mashing steps in this recipe. Make sure to export your recipes from the PicoBrew website.
{% else %}
{% for step in recipe.steps %} {% endfor %}
toc Name assessment Temperature (°C) schedule Time (min)
{{ step.name }} {{ step.temp }} {{ step.time }}
warning

Incorrect temperatures or timings can damage the machine. Make sure every step in the recipe is correct. Please proceed at your own risk.

{% endif %}
{% endblock %}