{# Introducing MySQL InnoDB Cluster This template defines the list template for use in the shopping list application using the base template. Dr. Charles Bell, 2018 #} {% extends "base.html" %} {% block title %}Shopping List Query Results{% endblock %} {% block page_content %} My Shopping List
{{ form.csrf_token }}
{{ form.submit }} {{ form.show_all }} {{ form.hide_checked }}

{% for col in columns %} {{ col|safe }} {% endfor %} {% for row in rows %} {% endfor %}
Actions
Update Delete {{ row[1] }} {{ row[2] }}
{% if row[3] == 1 %} {% else %} {% endif %}

{% endblock %}