{# templates/components/MangaSearch.html.twig #}
{% if this.mangas %}
{% for manga in this.mangas %}
{{ manga.title }}
{{ manga.title }} ({{ manga.publicationYear }})
{% for genre in manga.genres %} {{ genre }} {% endfor %}

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

{{ manga.rating }}
{% block content %}
{{ manga.title }}

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

Année de publication: {{ manga.publicationYear }}

Genres: {{ manga.genres|join(', ') }}

Note: {{ manga.rating }}

{% endblock %} {% block footer %} {{ component('LoadingButton', { text: 'Add ' ~ manga.title, type: 'submit', form: 'manga-' ~ loop.index, color: 'green' }) }} {% endblock %}
{% endfor %}
{% endif %}