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

View/Edit Book

{% set keys = [ 'title', 'author', 'publisher', 'genre', 'owned', 'covertype', 'condition', 'year_published', 'rating', 'notes', 'blurb' ] %}
{% for key in keys %}
{% if books[key] is iterable and books[key] is not string %} {% for objects in books[key] %} {% for attr in objects %} {% if attr != "id" %} {% endif %} {% endfor %} {% endfor %}
{% else %} {% if key == "notes" or key == "blurb" %} {% else %} {% endif %} {% endif %}
{% endfor %}
{% if books.sub_book|length %}

sub_book is defined: {{books.sub_book}}

{% endif %} {{ books.subs }} {% endblock main_content %}