{% extends "base.html" %} {% set active_nav = "drinking" %} {% block title %}Drinking Now โ€” Cellarbrain Explorer{% endblock %} {% block page_title %}Drinking Now{% endblock %} {% block content %} {% if wines %}

{{ wines|length }} wine{{ "s" if wines|length != 1 }} ready to drink, sorted by urgency.

{% for w in wines %}

{{ w.wine_name }}

{{ w.winery_name }} ยท {{ w.vintage }} {{ w.drinking_status|replace("_", " ")|title }}
๐Ÿพ {{ w.bottles_stored }} bottle{{ "s" if w.bottles_stored != 1 }} {% if w.price %}CHF {{ "%.0f"|format(w.price) }}{% endif %} {{ w.category }}
๐Ÿ—“ Drink {{ w.drink_from or "?" }}โ€“{{ w.drink_until or "?" }} {% if w.optimal_from or w.optimal_until %} ยท Optimal {{ w.optimal_from or "?" }}โ€“{{ w.optimal_until or "?" }}{% endif %}
{% endfor %}
{% else %}

No wines are currently in their drinking window with bottles in stock.

{% endif %} {% endblock %}