{# Introducing the MySQL 8 Document Store This template defines the publisher template for use in the MyLibrary application using the base template. Dr. Charles Bell, 2017 #} {% extends "base.html" %} {% block title %}MyLibrary Search{% endblock %} {% block page_content %}
{{ form.csrf_token }}
Publisher - Detail {{ form.hidden_tag() }}
{{ form.name.label }}
{{ form.name(size=64) }}
{{ form.city.label }}
{{ form.city(size=48) }}
{{ form.url.label }}
{{ form.url(size=75) }}

{{ form.create_button }} {% if form.del_button %} {{ form.del_button }} {% endif %}
{% endblock %}