{% extends "base.html" %} {% load mathfilters %} {% load funcs %} {% load static %} {% block style %} input, label { display:block; } .container-beer { background: {{ recipe.srm_hex }}; } p.smaller { font-size: .8em; } {% endblock %} {% block title %}Recipes{% endblock %} {% block jumbotron %}{{ recipe.name }}{% endblock %} {% block jumbotronsub %}
Recipe
{{ recipe.name }}
Author
Author
Type
All Grain
{{ recipe.equipment.name }}
Batch Size
{{ recipe.batch_size }} gal
Actual Volume
{{ recipe.final_volume|floatformat:2 }} gal
Mash Efficiency
{{ recipe.efficiency|floatformat:2 }} %
Style Data
{% endblock %} {% block content %}
Fermentables ({{ recipe.fermentable_weight|floatformat:2 }} lbs)
{% for f in recipe.recipefermentable_set.all %} {% endfor %}

Pre-Boil Gravity: {{ recipe.pre_boil_sg|floatformat:3 }}
Original Gravity: {{ recipe.original_sg|floatformat:3 }}
Color: {{ recipe.srm|floatformat:0 }} SRM

{{ f.quantity_display|floatformat:2 }} lb {{ f.fermentable.name }}
{{ f.fermentable.get_fermentable_type_display }} {{ f.lovibond_contributed }} L
{{ f.percent|floatformat:1 }} %
Hops ({{ recipe.hop_weight|floatformat:2 }} oz)
{% for h in recipe.recipehop_set.all %} {% endfor %}

Total IBU: {{ recipe.ibu_tinseth|floatformat:1 }}
BU/GU: {{ recipe.bu_gu|floatformat:2 }}
RBR: {{ recipe.rbr|floatformat:2 }}

{{ h.quantity_display|floatformat:2 }} oz {{ h.hop.name }} {{ h.hop.alpha|floatformat:1 }} %
{{ h.hop.get_hop_type_display }} {{ h.ibu_tinseth|floatformat:1 }} IBU
{{ h.time }} min
Misc.
{% for m in recipe.recipemisc_set.all %} {% endfor %}
{{ m.misc.name }}{{ m.misc.quantity }}
Yeast
{% for y in recipe.recipeyeast_set.all %} {% endfor %}
{{ y.yeast.name }}
Mash Profile: {{ recipe.mash.name }}
{% for step in recipe.mash.mashstep_set.all %} {% endfor %}
{{ step.name }}{{ step.step_temp }} °F{{ step.step_time }} min
Fermentation Profile


{% endblock %}