{% for b in bottles %} {{ b.wine_name }} {{ b.vintage }} {{ b.cellar_name or "—" }} {{ b.shelf or "—" }} {% if b.price %}CHF {{ "%.2f"|format(b.price) }}{% else %}—{% endif %} {{ b.status }} {% endfor %} {% if not bottles %} No bottles found. {% endif %}