{% 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 %} {{ form_start(form, {'action': path('app_manga_edit', {'id': manga.id}), 'attr': {'id': 'editForm', 'data-turbo-form': 'true'}}) }} {% do form.alternativeSlugs.setRendered() %}
{{ form_row(form.title, {'label_attr': {'class': 'block text-sm font-medium text-gray-700'}, 'row_attr': {'class': 'mt-1'}}) }} {{ form_row(form.slug, { 'label_attr': {'class': 'block text-sm font-medium text-gray-700'}, 'row_attr': {'class': 'mt-1'}, 'attr': { 'class': 'w-full px-3 py-2 bg-gray-100 border border-gray-300 rounded-md focus:outline-none text-gray-500', 'readonly': true } }) }} {{ form_row(form.publicationYear, {'label_attr': {'class': 'block text-sm font-medium text-gray-700'}, 'row_attr': {'class': 'mt-1'}}) }} {{ form_row(form.description, {'label_attr': {'class': 'block text-sm font-medium text-gray-700'}, 'row_attr': {'class': 'mt-1'}}) }} {{ form_row(form.author, {'label_attr': {'class': 'block text-sm font-medium text-gray-700'}, 'row_attr': {'class': 'mt-1'}}) }} {{ form_row(form.status, {'label_attr': {'class': 'block text-sm font-medium text-gray-700'}, 'row_attr': {'class': 'mt-1'}}) }} {{ form_row(form.rating, {'label_attr': {'class': 'block text-sm font-medium text-gray-700'}, 'row_attr': {'class': 'mt-1'}}) }}
{% for slug in form.alternativeSlugs %}
{{ form_widget(slug, {'attr': {'class': 'bg-transparent border-none focus:outline-none focus:border-b focus:border-green-500 p-0 w-full'}}) }}
{% endfor %}
{% for genre in form.genres %}
{{ form_widget(genre, {'attr': {'class': 'bg-transparent border-none focus:outline-none focus:border-b focus:border-green-500 p-0 w-full'}}) }}
{% endfor %}
{{ form_end(form) }} {% endblock %} {% block footer %} {% endblock %}
{# Modal de confirmation de suppression #}

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

{% endblock %}