{% extends "library_management/base.html" %} {% load custom_filters %} {% block title %}Book Detail{% endblock %} {% block content %}

{{ book }}

Author: {{ book.author.full_name }}

Published Date: {{ book.published_date }}

ISBN: {{ book.isbn }}

Summary: {{ book.summary }}

Tags: {{ book.tags.all|join:", " }}

Physical Copies

Back to list {% if book|classname == 'Book' %} Edit {% elif book|classname == 'Magazine' %} Edit {% endif %} {% endblock %}