{% extends 'base.html.twig' %} {% block title %}Mes replay {% endblock %} {% block customNavigation %} {% include "base/nav-customer.html.twig" %} {% endblock %} {% block body %} {{ include("base/ban-customer.html.twig", {name_page: "Vos replays"}) }}

Les ateliers

Vos replays

{% if reservations|length > 0 %} {% for organisator in reservations %} {% if organisator.event.eventReplays|length > 0 %} {% for contents in organisator.event.eventReplays %}
{% if contents.content.principal == 1 and contents.content.type.id == 11 %}

{{ contents.content.name }}

{% endif %} {% if contents.content.principal == 1 and contents.content.type.id == 10 %}

{{ contents.content.name }}

{% endif %}
{% endfor %} {% endif %} {% endfor %} {% else %}

Pas encore disponible.

{% endif %}
{% do reservations.setPageRange(2) %} {{ knp_pagination_render(reservations, 'base/pagination.html.twig') }}
{% endblock %}