Files
calibre-web-companion/CalibreWebCompanion/library/templates/library/ratings_list.html
2020-07-07 23:11:21 -03:00

17 lines
373 B
HTML

{% extends "base.html" %}
{% block content %}
{% load static %}
<h1>Ratings List</h1>
{% if ratings_list %}
<ul>
{% for rating in ratings_list %}
<li>
<a href="{{ rating.get_absolute_url }}">{{ rating.rating }}</a>
</li>
{% endfor %}
</ul>
{% else %}
<p>There are no ratings in the library.</p>
{% endif %}
{% endblock %}