{% extends "core/base.html" %} {% load bootstrap4 font_awesome i18n staticfiles %} {% load render_table from django_tables2 %} {% block bootstrap4_extra_head %} {{ block.super }} {% endblock %} {% block content %}

{{ book.title }}

{% fa 'pencil' %}
{% if book.cover %} {{ book.title }} {% else %} {{ book.title }} {% endif %} {% fa 'book' %} {{ book.title }}
{% fa 'pencil' %} {{ book.author }}
{% fa 'building' %} {{ book.publisher }}
{% fa 'hashtag' %} {{ book.edition }} {% fa 'calendar-edit' %} {{ book.year }}

{% blocktrans %}Copies{% endblocktrans %}

{% fa 'plus' %} {% fa 'barcode' %}
{% render_table copies_table %} {% endblock %}