{% extends "base.html" %} {% set active_nav = "drink_tonight" %} {% block title %}Drink Tonight — Cellarbrain Explorer{% endblock %} {% block page_title %}Drink Tonight Shortlist{% endblock %} {% block content %}

{{ count }} wine{{ '' if count == 1 else 's' }} staged for tonight. The list is mirrored to .drink-tonight.json so MCP-aware agents can read it via the get_drink_tonight tool.

{% if rows %}
{% for r in rows %} {% endfor %}
WineVintageProducerCategory StatusStockWindowAddedNote
{{ r.wine_name }} {{ r.vintage or "—" }} {{ r.winery_name or "—" }} {{ r.category or "—" }} {% if r.drinking_status %} {{ r.drinking_status|replace("_", " ") }} {% else %}—{% endif %} {{ r.bottles_stored }} {{ r.drink_from or "?" }}–{{ r.drink_until or "?" }} {{ r.added_at or "—" }} {{ r.note or "" }}
{% else %}

No wines on tonight's shortlist. Add any wine via the + Tonight button on its detail page.

{% endif %} {% endblock %} {% block scripts %} {% endblock %}