{% extends 'base.html.twig' %} {% block content %}
{#{ anys|ladybug_dump }#} {% for any in anys %}

{{ any.any }}

{% for grup,items in any.grups %}

{{ grup |trans({}, 'app') }}

{% for item in items %} {% if class(item) == 'Proclamo\\AppBundle\\Entity\\Projecte' %}
{% include 'Projecte/projecte_memoria.html.twig' with { 'entity': item, 'personal': item.investigador.id } %}
{% endif %} {% if class(item) == 'Proclamo\\AppBundle\\Entity\\Publicacio' %}
{% include 'Publicacio/publicacio_memoria.html.twig' with { 'entity': item } %}
{% endif %} {% endfor %} {% endfor %} {% endfor %}
{{ knp_pagination_render(anys) }}
{% endblock %}