{% block body %}

{{ manga.title }}

{{ manga.publicationYear }} Chapters: {{ manga.chapters.count }}
/media/mangas/{{ manga.title }} ({{ manga.publicationYear }}) {{ manga.status ?? 'Terminé' }}
{% set genre_count = 0 %} {% for genre in manga.genres %} {% if genre_count < 5 %} {{ genre }} {% set genre_count = genre_count + 1 %} {% endif %} {% endfor %} {% if genre_count == 5 and manga.genres|length > 5 %} ... {% endif %}
{{ manga.rating|round(2) }}

{{ manga.description|truncate(500) }}

{# Modal d'édition #} {% block content %}
{# Ajoutez d'autres champs selon vos besoins #}
{% endblock %} {% block footer %} {% endblock %}
{# Modal de confirmation de suppression #}

Are you sure you want to delete this manga? This action cannot be undone.

{% endblock %}