{% 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 %}

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