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

{{ object.title }}


  • Authors: {% for author in object.authors.all %} {{ author }} {% if not forloop.last %},{% else %}{% endif %} {% endfor %}
  • Publisher: {{ object.publisher }}
  • Publication date: {{ object.publication_date }}
  • {% endblock content %}