{% 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 %}

Back
{% endblock %}