{% extends 'layout.html' %} {% load bookwyrm_tags %} {% 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 %}

Wikipedia

{% endif %}

Books by {{ author.name }}

{% include 'snippets/book_tiles.html' with books=books %}
{% endblock %}