{% 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 · {{ cafe.name }}{% endblock %} {% block og_title %}{{ cafe.name }} — Brewlog{% endblock %} {% block og_description %} {{ cafe.name }} — {{ cafe.city }}, {{ cafe.country_flag }} {{ cafe.country }} {% endblock %} {% block head %} {% endblock %} {% block content %}
{{ img::image_thumbnail("cafe", cafe.id, image_url, is_authenticated) }}

{{ cafe.name }}

Cafes · {{ cafe.created_date }}

{{ img::lightbox_script() }}

Details

City
{{ cafe.city }}
Country
{% if !cafe.country_flag.is_empty() %} {{ cafe.country_flag }} {% endif %}{{ cafe.country }}
Location
View on Map
{% if let Some(url) = cafe.website %}
Website
Visit Website
{% endif %}
{{ detail::map_with_legend(cafe.map_countries, cafe.map_max, cafe.legend_entries) }}
{% if is_authenticated %} {{ detail::edit_delete_buttons(edit_url, "cafe", "/api/v1/cafes", cafe.id) }} {% endif %} {% endblock %}