{% from "components/anime_card.html" import anime_card %} {% from "components/series_card.html" import series_card %} {% if recommendations %}
{% for item in recommendations %} {% if item.get('content_type') == 'series' %} {{ series_card(item) }} {% else %} {{ anime_card(item) }} {% endif %} {% endfor %}
{% else %}

Aucune recommandation pour le moment.

{% endif %}