{{ titulos.programa|trans }}

{% if evento.agenda %}
{% for fecha in evento.agenda.fechas %}
{% if evento.agenda.fechas|length > 1 %}
{{ 'programa.dia'|trans }} {{ fecha.nombre }}
{% endif %} {% if sedes|length > 1 %} {% if fecha.sede %} {% endif %} {% endif %}
{% for item in fecha.items %}
{% if item.itemEmpresas|length %}
{{ item.itemEmpresas[0].empresa.nombre }}
{% endif %}

{{ item.horaDesde ~ ':' ~ item.minutosDesde }} - {{ item.horaHasta ~ ':' ~ item.minutosHasta }}

{% if item.icono %} {% endif %} {{ "titulo"|translate(item, app.request.locale) }}

{% if item.itemPersonas|length or item.descEs %}
{% endif %}

{{ "desc"|translate(item, app.request.locale) }}

{% if item.itemPersonas|length %}
{% for itemPersona in item.itemPersonas %}
{{ itemPersona.persona.nombre ~ ' ' ~ itemPersona.persona.apellido }} {{ "profesion"|translate(itemPersona.persona, app.request.locale) }}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}