book.inc 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {% load thumbnail %}
  2. {% if item %}
  3. {% if item.authors.all|length > 1 %}
  4. <div id="author_info">
  5. <h3 class="store_sectionhead">Authors</h3>
  6. {% else %}
  7. <div id="author_info_small">
  8. <h3 class="store_sectionhead">Author</h3>
  9. {% endif %}
  10. {% for author in item.authors.all %}
  11. <div class="author_box">
  12. {% if author.image %}
  13. {% thumbnail author.image "110x130" as im %}
  14. <img src="{{ im.url }}" width="{{ im.width }}" height="{{ im.height }}" alt='{{author.name}}'>
  15. {% endthumbnail %}{% endif %}
  16. <p class="item_descrip">
  17. {% if author.name %}<strong>{{author.name}}</strong>{% endif %}<br>
  18. {% if author.title %}<span class="item_descrip_small">{{author.title}}</span>{% endif %}
  19. {% if author.description %}<span class="item_descrip_small">{{author.description}}</span>{% endif %}</p>
  20. </div>
  21. {% endfor %}
  22. </div>
  23. <p class="item_descrip">
  24. {% if item.title %}<strong>Title:</strong> {{item.title}}<br />{% endif %}
  25. {% if item.subtitle %}<strong>Subtitle:</strong> {{item.subtitle}}<br />{% endif %}
  26. {% if item.editors %}<strong>Editor(s):</strong> {{item.editors}}<br />{% endif %}
  27. {% if item.illustrator %}<strong>Illustrator(s):</strong> {{item.illustrator}}<br />{% endif %}
  28. {% if item.synopsis %}<strong>Synopsis:</strong> {{item.synopsis}}<br />{% endif %}
  29. {% if item.publisher %}<strong>Publisher:</strong> {{item.publisher}}<br />{% endif %}
  30. {% if item.printer %}<strong>Printer:</strong> {{item.printer}}<br />{% endif %}
  31. {% if item.publish_date %}<strong>Publish Date:</strong> {{item.publish_date}}<br />{% endif %}
  32. {% if item.edition %}<strong>Edition:</strong> {{item.edition}}<br />{% endif %}
  33. {% if item.features %}<strong>Features:</strong> {{item.features}}<br />{% endif %}
  34. {% if item.dimensions %}<strong>Dimensions:</strong> {{item.dimensions}}<br />{% endif %}
  35. {% if item.pages %}<strong>Pages:</strong> {{item.pages}}<br />{% endif %}
  36. {% if item.isbn %}<strong>ISBN:</strong> {{item.isbn}}<br />{% endif %}
  37. {% if item.library_of_congress_number %}<strong>Lib. of Congress No.:</strong> {{item.library_of_congress_number}}<br />{% endif %}
  38. {% if item.genre %}<strong>Genre: </strong>{{item.genre}}{% endif %}
  39. </p>
  40. {% endif %}