{% extends 'base.html.twig' %} {% block title %}Book{% endblock %} {% block body %}
{% if file_exists(asset('book_covers/cover_' ~ book.id ~ '.jpg')) %} {% endif %}

{{ book.title }}

{{ book.subtitle }}

{{ book.author }}

{% for i in range(1, book.rating) %}⭐{% endfor %}

Category {{ book.category }}
Description {{ book.description | nl2br }}
Publisher {{ book.publisher }} Publish date {{ book.publishDate ? book.publishDate|date('Y-m-d') : '' }}
Isbn {{ book.isbn }} Pages {{ book.pages }}
Tags {{ book.tags }}
Series {{ book.series }} {{ book.volume }}
Language {{ book.language }}
{{ form_start(file_form) }} {{ form_widget(file_form) }} {{ form_end(file_form) }} back to list edit {{ include('book/_delete_form.html.twig') }} {% endblock %} {% block javascripts %} {{ parent() }} {{ encore_entry_script_tags('files') }} {% endblock %}