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

{{books.title}} by {% if books.authors %} {% for author in books.authors.all %} {{author.name}} {%endfor%} {% else %} {{books.author_sort}} {%endif%} Published by {% if books.publishers %} {% for pub in books.publishers.all %} {{pub.name}} {%endfor%} {% else %} Unknown {%endif%} Tags: {% if books.tags %} {% for tag in books.tags.all %} {{tag.name}}, {%endfor%} {% else %} {%endif%} Rating: {% if books.ratings %} {% for rating in books.ratings.all %} {{rating}} {%endfor%} {% else %} {%endif%} {{book.publisher}}

{{comment}} {% endblock %}