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

Results

{% for book in book_list %} {% endfor %}
Title Author Rating Tags Added
{{ book.title }} {{book.author_sort}} {% for rating in book.ratings.all %} {{rating}} {% endfor %} {% for tag in book.tags.all %} {{tag}}, {% endfor %} {{book.timestamp}}
{% endblock %}