{% extends "base.html" %} {% set active_nav = "tracked" %} {% block page_title %}Tracked: {{ wine.wine_name }}{% endblock %} {% block content %}
{{ wine.winery_name or "" }} {% if wine.region %} — {{ wine.region }}{% endif %} {% if wine.country %}, {{ wine.country }}{% endif %}
| Category | {{ wine.category or "—" }} |
| Classification | {{ wine.classification or "—" }} |
| Subregion | {{ wine.subregion or "—" }} |
| Wines in cellar | {{ wine.wine_count or 0 }} |
| Bottles stored | {{ wine.bottles_stored or 0 }} |
| On order | {{ wine.bottles_on_order or 0 }} |
| Date | Retailer | Vintage | Price | CHF | In Stock | Source |
|---|---|---|---|---|---|---|
| {{ p.observed_at or "" }} | {{ p.retailer }} | {{ p.vintage or "" }} | {{ p.price or "" }} {{ p.currency or "" }} | {{ p.price_chf or "" }} | {% if p.in_stock %} Yes {% else %} No {% endif %} | {{ p.observation_source or "" }} |
Not yet populated.