{% extends "Global/layout.html.twig" %} {% set pagetitle = 'My favorites' | trans %} {% block title %}{{pagetitle}}{% endblock %} {% block content %} {% set navigation = [{"dashboard_index": "Dashboard"|trans, "current":(pagetitle)}] %} {% include "Global/navigation.html.twig" with navigation %}
{% if events.getTotalItemCount > 0 %}
{% for event in events %}
{% include "Global/event-card.html.twig" with {event: event} %}
{% endfor %}
{% else %} {% include "Global/message.html.twig" with { type: "info", message: ('Add events to your favorites by clicking the heart button'|trans), icon: "fas fa-exclamation-circle" } %} {% endif %} {{ knp_pagination_render(events, null, {}, {'align': 'center'}) }}
{% endblock %}