{% extends "base.html" %} {% set active_nav = "bottles" %} {% block title %}Bottle Inventory — Cellarbrain Explorer{% endblock %} {% block page_title %}Bottle Inventory{% endblock %} {% block content %}
{% for v, label in [("stored", "Stored"), ("on_order", "On Order"), ("consumed", "Consumed"), ("all", "All")] %} {{ label }} {% endfor %}
{% set base_params = "view=" ~ view ~ "&cellar=" ~ cellar_filter ~ "&category=" ~ category %} {% for col_id, col_label in [("wine_name", "Wine"), ("vintage", "Vintage"), ("cellar_name", "Cellar"), ("shelf", "Shelf"), ("price", "Price"), ("status", "Status")] %} {% endfor %} {% include "partials/bottle_rows.html" %}
{{ col_label }}{% if sort == col_id %}{{ " ▼" if desc else " ▲" }}{% endif %}
{{ total }} bottle{{ "s" if total != 1 }}
{% if page > 1 %} ← Prev {% endif %} Page {{ page }} of {{ total_pages }} {% if page < total_pages %} Next → {% endif %}
{% endblock %}