{% extends 'base.html' %} {% block content %}
Book
{% if resource.references %}
cover for {{ resource['Title'] }}
{% endif %}

{% block title %} {{ resource.name }} {% endblock %}

{% if resource['Year'] %} {{ resource['Year'] }} {% endif %} {% if resource['Authors'] %}
{% if resource['Authors']|length > 1 %}
{% for author in resource['Authors'] %} {{ author }}
{% endfor %}
{% else %}
{% for author in resource['Authors'] %} {{ author }} {% endfor %}
{% endif %}
{% endif %}
{% if current_user.is_authenticated %}
Edit
{% endif %}
{% if resource['typology'] %}

Typology category

{{ resource['typology'] }}
{% endif %} {% if resource['bookUrl'] %} {% endif %} {% if resource['ISBN-13'] %}

ISBN-13

{{ resource['ISBN-13'] }}
{% endif %} {% if resource['Publisher'] %}

Publisher

{{ resource['Publisher'] }}
{% endif %} {% if resource['name'] %} {% endif %} {% if resource['author'] %}

{% if ' and ' in resource['author'] or ',' in resource['author'] %} Authors {% else %} Author {% endif %}

{{ resource['author'] }}
{% endif %} {% if resource['year'] %}

Publication year

{{ resource['year'] }}
{% endif %} {% if resource['desc'] %}

Publisher's description

{{ resource['desc'] }}
{% endif %} {% if resource['description'] %}

Experimental aspects:

{{ resource['description']|safe }}
{% endif %}
{{ relationships_links(resource) }}
{% endblock %}