{% 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.
| Bottle | Wine | Vintage | Producer | Cellar / Shelf | Marked at | Note | |
|---|---|---|---|---|---|---|---|
| {{ 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 "" }} |
Nothing pending. Marked-consumed bottles will appear here.
{% endif %} {% endblock %}