{% extends "base.html" %} {% block content %}

Books with rating: {{rating}}

{% if books %} {% for book in books %} {% endfor %}
Title Author Rating Tags Added
{{ book.title }} {{book.author_sort}} {{rating}} {% for tag in book.tags.all %} {{tag}}, {% endfor %} {{book.timestamp}}
{% else %} {%endif%} {% endblock %}