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

Book list

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