{% extends "base.html" %} {% block title %}Brewlog · Roast · {{ roast.name }}{% endblock %} {% block content %}

{{ roast.name }}

Detailed view for this roast.

Roaster
{{ roast.roaster_label }}
Origin
{{ roast.origin }}
Region
{{ roast.region }}
Producer
{{ roast.producer }}
Process
{{ roast.process }}
Created
{{ roast.created_at }}
{% if roast.tasting_notes.is_empty() %}

No tasting notes yet.

{% else %} {% endif %}

Bags

{% if bags.is_empty() %}

No bags recorded for this roast.

{% else %}
{% for bag in bags %} {% endfor %}
Created Amount Remaining Roast Date Status Finished
{{ bag.created_at }} {{ bag.amount }}g {{ bag.remaining }}g {% if let Some(date) = bag.roast_date %}{{ date }}{% else %}—{% endif %} {% if bag.closed %} Closed {% else %} Open {% endif %} {{ bag.finished_at }}
{% endif %}
{% endblock %}