brewlog/templates/pages/stats.html
Jon Seager 7f99ffc993
feat(stats): add geographic stats page with choropleth world map
- New /stats page with Roasters, Roasts, Cups, and Cafes tabs
- Interactive choropleth world map (SVG) colored by country counts
- Clickable country chips that highlight individual countries on the map
- Horizontal chip scroller with chevron navigation on desktop
- Datastar-powered tab switching without page reload
- Domain layer: country name → ISO code mapping, flag emoji generation
- StatsRepository trait with four aggregate SQL queries
- <world-map> and <chip-scroll> custom elements for Datastar compatibility
2026-02-08 11:03:15 +00:00

15 lines
481 B
HTML

{% extends "base.html" %} {% import "partials/icons.html" as icons %} {% block title %}Brewlog · Stats{% endblock %}
{% block content %}
<header class="flex flex-col gap-2">
<h1 class="text-3xl font-semibold">Stats</h1>
<p class="max-w-2xl text-sm text-text-secondary">Geographic overview of coffee data.</p>
</header>
<div class="flex flex-col gap-6">
{% include "partials/tab_bar.html" %}
<div id="stats-content">
{{ content|safe }}
</div>
</div>
{% endblock %}