{% extends "base.html" %} {% set active_nav = "heatmap" %} {% block title %}Cellar Heatmap — Cellarbrain Explorer{% endblock %} {% block page_title %}Cellar Heatmap{% endblock %} {% block content %} {% if cellars %}
optimal drinkable past optimal too young too old no window
{% for c in cellars %}

{{ c.cellar_name }}

{% for s in c.shelves %}
{{ s.shelf }} {% for b in s.bottles %} {% endfor %}
{% endfor %}
{% endfor %} {% else %}

No stored bottles to display.

{% endif %} {% endblock %}