{% extends "base.html" %} {% block title %}Brewlog · Roaster · {{ roaster.name }}{% endblock %} {% block content %}

{{ roaster.name }}

Detailed view for {{ roaster.name }}.

Country
{{ roaster.country }}
City
{{ roaster.city }}
Homepage
{% if roaster.has_homepage %} Visit {% else %} {% endif %}
Created
{{ roaster.created_at }}

Roasts

{% if roasts.is_empty() %}

This roaster has no roasts yet. Use the CLI to add one.

{% else %}
{% for roast in roasts %} {% endfor %}
Added Roast Origin Region Producer Process Tasting Notes
{{ roast.created_at }} {{ roast.name }} {{ roast.origin }} {{ roast.region }} {{ roast.producer }} {{ roast.process }} {% if roast.tasting_notes.is_empty() %} No tasting notes yet. {% else %}
    {% for note in roast.tasting_notes %}
  • {{ note }}
  • {% endfor %}
{% endif %}
{% endif %}
{% endblock %}