{% extends 'base.html.twig' %} {% block title %}Book{% endblock %} {% block body %}

Book

Id {{ book.id }}
Title {{ book.Title }}
Language {{ book.language }}
Description {{ book.description | nl2br }}
Publisher {{ book.publisher }}
Publish_date {{ book.publishDate ? book.publishDate|date('Y-m-d') : '' }}
{% for file in book.files %} {% else %} {% endfor %}
Id File name File size Extension Download Remove
{{ file.id }} {{ file.fileName }} {{ file.fileSize | bytes_format }} {{ file.extension }} download remove
no files found
{{ form_start(file_form) }} {{ form_widget(file_form) }} {{ form_end(file_form) }} back to list edit {{ include('book/_delete_form.html.twig') }} {% endblock %}