{% extends "base.html" %} {% set active_page = "drinks" %} {% block title %}Drinks {{ super() }}{% endblock %} {% block page %} {% if g.is_editor %} {% endif %} {% if not model.drinks %} There are no drinks. {% else %} {% for prop, caption in model.columns %} {% endfor %} {% if g.is_editor %} {% endif %} {% for drink in model.drinks %} {% for prop, caption in model.columns %} {% endfor %} {% if g.is_editor %} {% endif %} {% endfor %}
{{ caption }}
{{ drink[prop] }}
{% endif %} {% endblock %}