{% extends "base.html" %} {% block title %}Red link page{% endblock %} {% block css %} {% endblock %} {% block header %}{% endblock %} {% block main %}

Nothing in the library yet with: {{ title }}

Add this potential book:

{% with messages = get_flashed_messages() %} {% if messages %}
{% endif %} {% endwith %}
{{ form.csrf_token }}
{{ form.title.label }} {{ form.title(size=20, class="form-control") }}

{{ form.author.label }} {% for author in form.author %} {% endfor %}
{{ author.author_name }}

{{ form.category.label }} {{ form.category(size=20, class="form-control") }}
{{ form.file }} {{ form.upload }} {{ form.wish }}

go back home?

{% endblock %}