mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-18 15:41:12 +00:00
15 lines
366 B
HTML
15 lines
366 B
HTML
{% extends 'layout.html' %}
|
|
{% load fr_display %}
|
|
{% block content %}
|
|
<div id="content">
|
|
<div>
|
|
<h2>{{ author.data.name }}</h2>
|
|
{% for book in books %}
|
|
<div class="book-preview">
|
|
{% include 'snippets/book.html' with book=book size=large description=True %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|