{% extends 'base.html' %} {% load static%} {% block title %}{{ object.first_name }} {{ object.last_name }}{% endblock %} {% block content %}

{{ object.first_name }} {{ object.last_name }}

{{ object.age }}
{{ object.nationality }}
{{ object.bio }}

Books by {{ object.first_name }} {{ objects.last_name }} I love:
{# https://stackoverflow.com/questions/70442828/django-object-list-from-listview-with-two-models #} {% for object in author.books_set.all %} {{ object }}
{% endfor %}

Home Books Authors {% endblock %}