{# Introducing the MySQL 8 Document Store This template defines the template used for listing the books stored in the MyLibrary application using the base template. Dr. Charles Bell, 2017 #} {% extends "base.html" %} {% block title %}MyLibrary Query Results{% endblock %} {% block page_content %}
{{ form.csrf_token }}
{{ form.submit }}

Query Results {% for col in columns %} {{ col|safe }} {% endfor %} {% for row in rows %} {% for col in row[1:] %} {% endfor %} {% endfor %}
Action
Modify {{ col }}
{% endblock %}