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

All Books

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