{% extends 'base.html' %} {% block main %}
{% from "_formhelpers.html" import render_field %}

Search Results for: {{ query }}

{% with messages = get_flashed_messages() %} {% if messages %}
{% endif %} {% endwith %} {% for book in books %} {% endfor %}
Cover Title Author Filetype Tag
{{ book.title }} {% for author in book.authors %}
  • {{ author.author_name }}
  • {% endfor %}
    {{ book.fileformat }} {{ book.tag}}

    Other books

    {% for book in books_all %} {% endfor %}
    Cover Title Author Filetype Tag
    {{ book.title }} {% for author in book.authors %}
  • {{ author.author_name }}
  • {% endfor %}
    {{ book.fileformat }} {{ book.tag}}

    See all books

    {% endblock %}