{# Introducing MySQL InnoDB Cluster This template defines the item view template for use in the shopping list application using the base template. Dr. Charles Bell, 2018 #} {% extends "base.html" %} {% block title %}Shopping List{% endblock %} {% block page_content %}
{{ form.csrf_token }}
Item View {{ form.hidden_tag() }}
{{ form.description.label }}
{{ form.description(size=75) }}
{{ form.note.label }}
{{ form.note(size=75) }}

{{ form.create_button }}
{% endblock %}