{% extends "base.html" %} {% set active_nav = "tracked" %} {% block page_title %}Tracked Wines{% endblock %} {% block content %} {% if wines %}
{% for w in wines %} {% endfor %}
Wine Winery Category Region Classification Wines Stored On Order
{{ w.wine_name }} {{ w.winery_name or "" }} {{ w.category or "" }} {{ w.region or w.country or "" }} {{ w.classification or "" }} {{ w.wine_count }} {{ w.bottles_stored }} {{ w.bottles_on_order }}
{% else %}

No tracked wines configured. Tracked wines are created via the ETL pipeline when tracked_wine.parquet is present in the data directory.

{% endif %} {% endblock %}