{% 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') : '' }} |
| Id |
File name |
File size |
Extension |
Download |
Remove |
{% for file in book.files %}
| {{ file.id }} |
{{ file.fileName }} |
{{ file.fileSize | bytes_format }} |
{{ file.extension }} |
download |
remove |
{% else %}
| no files found |
{% endfor %}
back to list
edit
{{ include('book/_delete_form.html.twig') }}
{% endblock %}