{% extends "base_generic.html" %} {% block content %}
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 %}
{{ copy.get_status_display }}
{% if copy.status != 'a' %}Due to be returned: {{copy.due_back}}
{% endif %}Imprint: {{copy.imprint}}
Id: {{copy.id}}
{% endfor %}