{% extends "base/main.html" %}
{%block title%}
Worblehat: {{ book.title }}
{% endblock %}
{% block content %}
{% if book.thumbnail %}
{% endif %}
{{ book.title }}
{% if book.subtitle %}
{{ book.subtitle }}
{% endif %}
{% for relation, persons in contributors.iteritems %}
{{ relation }}{% if persons.0 != 1 and relation != 'Medvirkende' %}e{% endif %}:
{% for person in persons.1 %}
{{ person.person.first_name }} {{ person.person.last_name }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% endfor %}
{% if book.category %}
Kategori: {{ book.category }}
{% endif %}
{% if book.shelves %}
Hylle: {{ book.shelves }}
{% endif %}
{% if book.published_year %}
År: {{ book.published_year }}
{% endif %}
{% if book.edition %}
Utgave: {{ book.edition }}
{% endif %}
{% if book.num_pages %}
Antall sider: {{ book.num_pages }}
{% endif %}
{% if book.series %}
Serie: {{ book.series }}
{% endif %}
{% if book.description %}
Beskrivelse: {{ book.description }}
{% endif %}
ISBN: {{ book.isbn }}
{% endblock %}