{% extends "base.html" %} {% set active_nav = "tracked" %} {% block page_title %}Tracked: {{ wine.wine_name }}{% endblock %} {% block content %}
{{ wine.wine_name }}

{{ 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 }}
{% if prices_chart %}
Price History
{% endif %} {% if prices_table %}
Price Observations
{% for p in prices_table %} {% endfor %}
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 "" }}
{% endif %} {% if companion %}
Companion Dossier
{% for section in companion.sections %} {% if section.populated %}
{{ section.heading }}
{{ section.html|safe }}
{% else %}
{{ section.heading }}

Not yet populated.

{% endif %} {% endfor %} {% endif %} {% endblock %}