{% extends "library_management/base.html" %} {% load custom_filters %} {% block title %}Book Detail{% endblock %} {% block content %}
Author: {{ book.author.full_name }}
Published Date: {{ book.published_date }}
ISBN: {{ book.isbn }}
Summary: {{ book.summary }}
Tags: {{ book.tags.all|join:", " }}