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

Book

Id {{ book.id }}
Title {{ book.Title }}
Language {{ book.language }}
Description {{ book.description }}
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
back to list edit {{ include('book/_delete_form.html.twig') }} {% endblock %}