{% extends "library/base.html" %}{% load molly_maps %}{% load i18n %} {% block content %}

{{ item.title }}

{% if item.author %} {% endif %} {% if item.publisher %} {% endif %} {% if item.edition %} {% endif %} {% if item.description %} {% endif %} {% if item.isbns %} {% for isbn in item.isbns %} {% if forloop.first %} {% blocktrans count item.isbns|length as count %}ISBN{% plural %}ISBNs{% endblocktrans %}: {% endif %} {% endfor %} {% endif %} {% if item.issns %} {% for issn in item.issns %} {% if forloop.first %} {% blocktrans count item.issns|length as count %}ISSN{% plural %}ISSNs{% endblocktrans %}: {% endif %} {% endfor %} {% endif %}
{% trans "Author" %}: {{ item.author }}
{% trans "Publisher" %}: {{ item.publisher }}
{% trans "Edition" %}: {{ item.edition }}
{% trans "Description" %}: {{ item.description }}
{{ isbn }}
{{ issn }}

{% if library.get_entity %} {{ library.get_entity.title }} {% else %} {{ library.location|join:"/" }} {% endif %}

{% if library.get_entity.location %} {% render_location_map library.get_entity.location %} {% endif %}
{% endblock %}