Files
BookNest/templates/favoris/index.html.twig

12 lines
219 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Mes favoris{% endblock %}
{% block body %}
{% for data in datas %}
{% for book in data %}
<p>{{ book.title }}</p>
{% endfor %}
{% endfor %}
{% endblock %}