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

{{ book.title }}

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

{{ book.description }}

ISBN: {{ book.isbn }}

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

Available copies: {{ book.quantity }}

{% csrf_token %}
Select reader username.
Cancel
{% endblock %}