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

Book list

Add new
{% for book in books %} {% else %} {% endfor %}
Title Description Publisher Publish date actions
{% if file_exists(asset('book_covers/cover_' ~ book.id ~ '.jpg')) %} {% endif %} {{ book.title }} {{ book.description | slice(0, 200) }} {{ book.publisher }} {{ book.publishDate ? book.publishDate|date('Y-m-d') : '' }} show edit
no records found
{% endblock %}