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

All Books

{% for book in books %} {% if book.sub_book_num is defined %} {% else %} {% endif %} {% endfor %}
TitleAuthor(s)PublisherConditionOwnedCovertype
    {{book.title}}{{book.title}} {% for auth in book.author %} {{ auth['surname'] }}, {{auth['firstnames']}} {% endfor %} {{ GetPublisherById(book.publisher)}} {% set cond = GetConditionById(book.condition) %} {% if cond == "Good" %} {% elif cond == "Average" %} {% else %} {% endif %} {{ GetOwnedById(book.owned)}} {{ GetCovertypeById(book.covertype) }}
{% endblock main_content %}