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

{{book.title}}

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

{% autoescape off %} {{comment}} {% endautoescape %}
{% endblock %}