{% extends "opac/base.html" %} {% load markdownify %} {% block navbar_items %} {{ block.super }} {% endblock %} {% block content %}
{% if author.image %}
{{ author }}
{% endif %}

{{ author }}

{{ author.country.name }}

{% if author.born %}

{{ author.born }} {% if author.died %} - {{ author.died }} {% endif %}

{% endif %}

{{ author.get_author_type_display }}

{% if author.description %}

{{ author.description|truncatewords:50|markdownify }} {% if author.description_requires_read_more %} Read more... {% endif %}

{% endif %}

Books

{% for book in books %} {% endfor %}
Title
{{ book.title }} {% if book.subtitle %} : {{ book.subtitle }} {% endif %}
{% endblock %}