{% if books is not mapping %}

All Books

{% for book in books %} {% endfor %}
TitleAuthorPublisherConditionOwnedCovertype
{{book.title}} {{ book.author[0]['surname'] }}, {{book.author[0]['firstnames']}} {{ book.publisher}} {% if book.condition == "Good" %} {% elif book.condition == "Average" %} {% else %} {% endif %} {{ book.owned}} {{ book.covertype}}
{% else %}

Book

{{books.title}}, {{ books.author[0]['surname'] }}, {{books.author[0]['firstnames']}}

{% endif %}