{% extends 'base.html' %} {% block main %}
{% from "_formhelpers.html" import render_field %}
{{ form.select(style="width: 100px; margin: 10px; float: left; font-size: 20px") }}

Search Results for: {{ query }}

{% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}
  • {{ message }}
  • {% endfor %}
{% endif %} {% endwith %} {% for book in books %} {% endfor %}
{{ book.title }} {% for author in book.authors %}
  • {{ author.author_name }}
  • {% endfor %}
    {{ book.fileformat }} {{ book.category}} {% for stack in book.stacks %}
  • {{ stack.stack_name }}
  • {% endfor %}

    Other books

    {% for book in books_all %} {% endfor %}
    {{ book.title }} {% for author in book.authors %}
  • {{ author.author_name }}
  • {% endfor %}
    {{ book.fileformat }} {{ book.category}} {% for stack in book.stacks %}
  • {{ stack.stack_name }}
  • {% endfor %}

    See all books

    {% endblock %}