Copy current URL to clipboard with toast feedback on brew, roast, roaster, bag, cup, cafe, and gear detail pages.
143 lines
5.5 KiB
HTML
143 lines
5.5 KiB
HTML
{% 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 · {{ bag.roast_name }}{% endblock %}
|
|
{% block description %}
|
|
{{ bag.roast_name }}
|
|
by {{ bag.roaster_name }} — {{ bag.amount }} bag.
|
|
{% endblock %}
|
|
{% block og_title %}{{ bag.roast_name }} — Brewlog{% endblock %}
|
|
{% block og_description %}
|
|
{{ bag.roast_name }}
|
|
by {{ bag.roaster_name }} — {{ bag.amount }} bag.
|
|
{% endblock %}
|
|
{% block head %}
|
|
<meta property="og:image" content="{{ base_url }}/static/og-image.png" />
|
|
{% endblock %}
|
|
{% block content %}
|
|
<header class="flex items-start justify-between gap-4">
|
|
<div class="flex items-center gap-4 min-w-0">
|
|
{% if let Some(url) = image_url %}
|
|
{{ img::readonly_image(url, "roast image") }}
|
|
{% else %}
|
|
<div
|
|
class="flex shrink-0 items-center justify-center h-14 w-14 md:h-20 md:w-20 rounded-lg border-2 border-dashed border-text-muted/30 text-text-muted"
|
|
>
|
|
{{ icons::bag("h-6 w-6") }}
|
|
</div>
|
|
{% endif %}
|
|
<div class="flex flex-col gap-1 min-w-0">
|
|
<h1 class="text-2xl font-semibold truncate">{{ bag.roast_name }}</h1>
|
|
<p class="text-sm text-text-secondary">
|
|
<a
|
|
href="/data?type=bags"
|
|
class="text-accent hover:text-accent-hover transition"
|
|
>Bags</a
|
|
>
|
|
· {{ bag.created_date }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
{% if image_url.is_some() %}
|
|
{{ img::lightbox_script() }}
|
|
{% endif %}
|
|
|
|
{# ── Coffee + map ── #}
|
|
<div class="grid gap-6 md:grid-cols-2">
|
|
{{ detail::coffee_card(bag.roast_name, bag.roaster_name, bag.origin, bag.origin_flag, bag.region, bag.producer, bag.process, bag.tasting_notes, roaster_slug, roast_slug) }}
|
|
{{ detail::map_with_legend(bag.map_countries, bag.map_max, bag.legend_entries) }}
|
|
</div>
|
|
|
|
{# ── Roaster & bag info ── #}
|
|
<div class="grid gap-6 md:grid-cols-2">
|
|
{{ detail::roaster_card(bag.roaster_name, bag.roaster_country, bag.roaster_country_flag, bag.roaster_city, bag.roaster_homepage, roaster_slug) }}
|
|
|
|
<div class="rounded-lg border bg-surface p-5">
|
|
<h2 class="text-lg font-semibold text-text mb-4">Bag</h2>
|
|
<dl class="grid grid-cols-2 gap-x-4 gap-y-3 text-sm">
|
|
<div>
|
|
<dt class="text-text-muted">Amount</dt>
|
|
<dd class="font-medium text-text">{{ bag.amount }}</dd>
|
|
</div>
|
|
<div>
|
|
<dt class="text-text-muted">Status</dt>
|
|
<dd>
|
|
{% if bag.closed %}
|
|
<span class="font-medium text-text">Closed</span>
|
|
{% else %}
|
|
<div class="mt-1">
|
|
<div
|
|
class="h-2 rounded-full bg-surface-alt overflow-hidden"
|
|
role="progressbar"
|
|
aria-valuenow="{{ bag.used_percent }}"
|
|
aria-valuemin="0"
|
|
aria-valuemax="100"
|
|
aria-label="Coffee used"
|
|
>
|
|
<div
|
|
class="h-full rounded-full bg-accent"
|
|
style="width: {{ bag.used_percent }}%"
|
|
></div>
|
|
</div>
|
|
<p class="mt-1 text-text-muted" style="font-size: 0.7rem">
|
|
{{ bag.remaining }} / {{ bag.amount }}
|
|
</p>
|
|
</div>
|
|
{% endif %}
|
|
</dd>
|
|
</div>
|
|
{% if let Some(rd) = bag.roast_date %}
|
|
<div>
|
|
<dt class="text-text-muted">Roast Date</dt>
|
|
<dd class="font-medium text-text">{{ rd }}</dd>
|
|
</div>
|
|
{% endif %}
|
|
<div>
|
|
<dt class="text-text-muted">Opened</dt>
|
|
<dd class="font-medium text-text">{{ bag.created_date }}</dd>
|
|
</div>
|
|
{% if let Some(fd) = bag.finished_date %}
|
|
<div>
|
|
<dt class="text-text-muted">Finished</dt>
|
|
<dd class="font-medium text-text">{{ fd }}</dd>
|
|
</div>
|
|
{% endif %}
|
|
</dl>
|
|
</div>
|
|
</div>
|
|
|
|
{% if is_authenticated %}
|
|
{# ── Actions ── #}
|
|
<div class="grid gap-6 md:grid-cols-2">
|
|
<div
|
|
class="rounded-lg border bg-surface p-5 md:col-span-2 flex flex-col gap-2 sm:flex-row sm:items-center"
|
|
>
|
|
{{ detail::share_button() }}
|
|
{% if !bag.closed %}
|
|
<button
|
|
type="button"
|
|
class="inline-flex items-center justify-center gap-2 rounded-md border px-4 py-2 text-sm font-medium text-accent transition hover:text-text hover:bg-surface-alt sm:flex-1"
|
|
data-on:click="confirm('Close this bag? This will mark it as finished.') && @put('/api/v1/bags/{{ bag.id }}?closed=true&remaining=0')"
|
|
>
|
|
{{ icons::x_mark("h-4 w-4") }} Close Bag
|
|
</button>
|
|
{% endif %}
|
|
<a
|
|
href="{{ edit_url }}"
|
|
class="inline-flex items-center justify-center gap-2 rounded-md border px-4 py-2 text-sm font-medium text-accent transition hover:bg-surface-alt sm:flex-1"
|
|
>
|
|
{{ icons::pencil("h-4 w-4") }} Edit
|
|
</a>
|
|
<button
|
|
type="button"
|
|
class="inline-flex items-center justify-center gap-2 rounded-md border px-4 py-2 text-sm font-medium text-error transition hover:bg-surface-alt sm:flex-1"
|
|
data-on:click="confirm('Delete this bag? This cannot be undone.') && @delete('/api/v1/bags/{{ bag.id }}')"
|
|
>
|
|
{{ icons::delete("h-4 w-4") }} Delete
|
|
</button>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|