{% extends "base.html" %} {% block content %}
{% for recipe in recipes %}
{{ recipe.name }}
{{ recipe.style.name }} by {{ recipe.brewer }} {% if not recipe.steps %} error {% endif %}
  • IBU {{ format_float(recipe.ibu, 0) }}
  • OG {{ format_float(recipe.og, 3) }} / FG {{ format_float(recipe.fg, 3) }}
  • Batch Size {{ format_volume(recipe.batch_size) }}
    {% for fermentable in recipe.fermentables %}
  • {{ format_weight(fermentable.amount) }} {{ fermentable.name }}
  • {% endfor %}
    {% for hop in recipe.hops %}
  • {{ format_weight(hop.amount, "g") }} {{ hop.name }} ({{ hop.alpha }}AA @ {{ format_time(hop.time) }})
  • {% endfor %}
  • view_list See Mash Schedule
    {% if recipe.steps %}
      {% for step in recipe.steps %}
    1. {{ step.name }} ({{ format_float(step.temp, 0) }}C @ {{ format_time(step.time) }})
    2. {% endfor %}
    {% else %}

    This recipe contains no mashing program. It will not be synced to your PicoBrew machine.

    {% endif %}
{% endfor %}
{% endblock %}