{% include 'noscript/_nav.html' %}
{{ author.name }}
- Author ID
- {{ author.id }}
{% if author.first_names %}
- First Name
- {{ author.first_names }}
{% endif %}
{% if author.last_name %}
- Last Name
- {{ author.last_name }}
{% endif %}
{% if author.birth_year or author.death_year %}
- Lifespan
-
{% if author.birth_year %}{{ author.birth_year }}{% endif %}
{% if author.birth_year or author.death_year %} - {% endif %}
{% if author.death_year %}{{ author.death_year }}{% endif %}
{% endif %}
Books by {{ author.name }}
{{ author_books|length }} book{% if author_books|length != 1 %}s{% endif %} available
{% for book in author_books %}
{{ book.title }}
{% if book.subtitle %}
{{ book.subtitle }}
{% endif %}
Book ID: {{ book.id }}
{% if book.languages %} | Languages: {{ book.languages|join(", ") }}{% endif %}
{% endfor %}