{% extends "base.html" %} {% block title %}Pending Consumed — Cellarbrain Explorer{% endblock %} {% block page_title %}Pending Consumed Bottles{% endblock %} {% block content %}

{{ count }} bottle{{ '' if count == 1 else 's' }} marked consumed in the dashboard. Each entry will disappear automatically after the next ETL run imports the matching bottles-gone row from Vinocell.

{% if rows %}
{% for r in rows %} {% endfor %}
BottleWineVintageProducer Cellar / ShelfMarked atNote
{{ r.bottle_id }} {{ r.wine_name }} {{ r.vintage or "—" }} {{ r.winery_name or "—" }} {{ r.cellar_name or "—" }} / {{ r.shelf or "—" }} {{ r.marked_at or "—" }} {{ r.note or "" }}
{% else %}

Nothing pending. Marked-consumed bottles will appear here.

{% endif %} {% endblock %}