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

17 lines
372 B
HTML

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