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


{{ form.grid(style="font-size:20px")}}{{ form.listview(style="font-size:20px")}}


Results: "{{ query }}" included in {{ count }} out of {{ whole }} items


{% with messages = get_flashed_messages() %} {% if messages %}
{% endif %} {% endwith %} {%if light%} {%else%} {%endif%} {% for book in books %} {%if light%} {%else%} {%endif%} {% endfor %}
{{ book.title }} {% for author in book.authors %}
  • {{ author.author_name }}
  • {% endfor %}
    {{ book.year_published or '––'}} {{ book.category}} {% for stack in book.stacks %}
  • {{ stack.stack_name }}
  • {% endfor %}
    ==>

    More books

    {%if light%} {%else%} {%endif%} {% for book in books_all %} {%if light%} {%else%} {%endif%} {% endfor %}
    {{ book.title }} {% for author in book.authors %}
  • {{ author.author_name }}
  • {% endfor %}
    {{ book.year_published or '––'}} {{ book.category}} {% for stack in book.stacks %}
  • {{ stack.stack_name }}
  • {% endfor %}
    ==>

    See all books

    {% endblock %}