calibre-web-companion/CalibreWebCompanion/library/templates/library/author_list.html

17 lines
350 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>Author List</h1>
{% if author_list %}
<ul>
{% for author in author_list %}
<li>
<a href="{{ author.get_absolute_url }}">{{ author.name }}</a>
</li>
{% endfor %}
</ul>
{% else %}
<p>There are no author in the library.</p>
{% endif %}
{% endblock %}