{% extends "base.html" %} {% import "partials/detail_cards.html" as detail %} {% import "partials/icons.html" as icons %} {% import "partials/image_section.html" as img %} {% block title %}Brewlog · {{ roast.name }}{% endblock %} {% block og_title %}{{ roast.name }} — Brewlog{% endblock %} {% block og_description %} {{ roast.name }} by {{ roast.roaster_name }} — {{ roast.origin }} {% endblock %} {% block head %} {% endblock %} {% block content %}
{{ img::image_thumbnail("roast", roast.id, image_url, is_authenticated) }}

{{ roast.name }}

Roasts · {{ roast.created_date }}

{{ img::lightbox_script() }}
{{ detail::coffee_card(roast.name, roast.roaster_name, roast.origin, roast.origin_flag, roast.region, roast.producer, roast.process, roast.tasting_notes, roaster_slug, "") }} {{ detail::map_with_legend(roast.map_countries, roast.map_max, roast.legend_entries) }}
{{ detail::roaster_card(roast.roaster_name, roast.roaster_country, roast.roaster_country_flag, roast.roaster_city, roast.roaster_homepage, roaster_slug) }}
{% if is_authenticated %} {{ detail::edit_delete_buttons(edit_url, "roast", "/api/v1/roasts", roast.id) }} {% endif %} {% endblock %}