{% 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') : '' }}
{{ 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 %}