{% extends "base.html" %} {% block main_content %}

{{page_title}}

{% for obj in missing %} {% if (loop.index % 2) == 1 %} {% endif %} {% if (loop.index % 2) == 0 %} {% endif %} {% endfor %} {% for book in books %} {% if (loop.index % 2) == 1 %} {% endif %} {% if (loop.index % 2) == 0 %} {% endif %} {% endfor %}
Book Number of SeriesSeries Book Number of SeriesSeries
{{obj.missing}}{{obj.title}}
TitleAuthor(s) TitleAuthor(s)
{{book.title}} {% for auth in book.author %} {{ auth['surname'] }}, {{auth['firstnames']}} {% endfor %}
{% endblock main_content %}