{% extends "base.html" %} {% set active_nav = "stats" %} {% block page_title %}Cellar Statistics{% endblock %} {% block content %}
{{ overview.wines or 0 }}
Wines
{{ overview.bottles or 0 }}
Bottles
{{ "{:,.0f}".format(overview.total_value or 0) }}
Total Value (CHF)
{{ overview.avg_price|int if overview.avg_price else "—" }}
Avg Price
{{ overview.ready or 0 }}
Ready to Drink
{{ overview.countries or 0 }}
Countries
{{ overview.regions or 0 }}
Regions
{{ overview.on_order or 0 }}
On Order
{{ "{:,.0f}".format(overview.on_order_value or 0) }}
On Order (CHF)
{% for opt in [("country", "Country"), ("region", "Region"), ("category", "Category"), ("vintage", "Vintage"), ("winery_name", "Winery"), ("drinking_status", "Status")] %} {{ opt[1] }} {% endfor %}
{% include "partials/stats_content.html" %}
{% endblock %}