{% load thumbnail %} {% if item %} {% if item.authors.all|length > 1 %}

Authors

{% else %}

Author

{% endif %} {% for author in item.authors.all %}
{% if author.image %} {% thumbnail author.image "110x130" as im %} {{author.name}} {% endthumbnail %}{% endif %}

{% if author.name %}{{author.name}}{% endif %}
{% if author.title %}{{author.title}}{% endif %} {% if author.description %}{{author.description}}{% endif %}

{% endfor %}

{% if item.title %}Title: {{item.title}}
{% endif %} {% if item.subtitle %}Subtitle: {{item.subtitle}}
{% endif %} {% if item.editors %}Editor(s): {{item.editors}}
{% endif %} {% if item.illustrator %}Illustrator(s): {{item.illustrator}}
{% endif %} {% if item.synopsis %}Synopsis: {{item.synopsis}}
{% endif %} {% if item.publisher %}Publisher: {{item.publisher}}
{% endif %} {% if item.printer %}Printer: {{item.printer}}
{% endif %} {% if item.publish_date %}Publish Date: {{item.publish_date}}
{% endif %} {% if item.edition %}Edition: {{item.edition}}
{% endif %} {% if item.features %}Features: {{item.features}}
{% endif %} {% if item.dimensions %}Dimensions: {{item.dimensions}}
{% endif %} {% if item.pages %}Pages: {{item.pages}}
{% endif %} {% if item.isbn %}ISBN: {{item.isbn}}
{% endif %} {% if item.library_of_congress_number %}Lib. of Congress No.: {{item.library_of_congress_number}}
{% endif %} {% if item.genre %}Genre: {{item.genre}}{% endif %}

{% endif %}