{% extends 'base.html' %} {% block title %}{{ author.name }}{% endblock %} {% block content %} {% if messages %} {% endif %}

Authors Book Details

Authors name:
{{ author.name|title }}

{% for book in author.book_author.all %}
Book ID: {{ book.id }}
Title: {{ book.title }}

{% endfor %}

Edit Authors Books All Collection

{% endblock content %}