forked from mirrors/bookwyrm
31a407d74a
It feels janky to remove a more granular name designation, but all these first/last name fields were algorithmically populated by a dubious process of splitting the name by a space character. If it makes sense to have first/last name fields, it should be re-added with some consideration.
19 lines
390 B
HTML
19 lines
390 B
HTML
{% extends 'layout.html' %}
|
|
{% load fr_display %}
|
|
{% block content %}
|
|
<div class="block">
|
|
<h1 class="title">{{ author.name }}</h1>
|
|
|
|
{% if author.bio %}
|
|
<p>
|
|
{{ author.bio }}
|
|
</p>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="block">
|
|
<h3 class="title is-4">Books by {{ author.name }}</h3>
|
|
{% include 'snippets/book_tiles.html' with books=books %}
|
|
</div>
|
|
{% endblock %}
|
|
|