{% extends "base_generic.html" %} {% block content %}

Title: {{ book.title }}

Author: {{ book.author }}

Summary: {{ book.summary }}

ISBN: {{ book.isbn }}

Language: {{ book.language }}

Genre: {% for genre in book.genre.all %}{{genre}}{% if not forloop.last %}, {% endif %}{% endfor %}

Copies

{% for copy in book.bookinstance_set.all %}

{{ copy.get_status_display }}

{% if copy.status != 'a' %}

Due to be returned: {{copy.due_back}}

{% endif %}

Imprint: {{copy.imprint}}

Id: {{copy.id}}

{% endfor %}
{% endblock %}