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

Book index

{% for book in books %} {% else %} {% endfor %}
Cover Id Title Language Description Publisher Publish_date actions
{% if file_exists(asset('book_covers/cover_' ~ book.id ~ '.jpg')) %} {% endif %} {{ book.id }} {{ book.Title }} {{ book.language }} {{ book.description }} {{ book.publisher }} {{ book.publishDate ? book.publishDate|date('Y-m-d') : '' }} show edit
no records found
Create new {% endblock %}