{% extends 'layout.html' %} {% load i18n %} {% load bookwyrm_tags %} {% block title %}{{ author.name }}{% endblock %} {% block content %}

{{ author.name }}

{% if request.user.is_authenticated and perms.bookwyrm.edit_book %} {% endif %}
{% if author.bio %} {{ author.bio | to_markdown | safe }} {% endif %} {% if author.wikipedia_link %}

{% trans "Wikipedia" %}

{% endif %}

{% blocktrans with name=author.name %}Books by {{ name }}{% endblocktrans %}

{% for book in books %}
{% include 'discover/small-book.html' with book=book %}
{% endfor %}
{% endblock %}