{% extends "@ChillMain/layout.html.twig" %} {% block title %} {{ 'Aside activity list'|trans }} {% endblock title %} {% block content %}

{{ 'My aside activities'|trans }}

{% if entities|length == 0 %}

{{ "There aren't any aside activities."|trans }}

{% else %}
{% for entity in entities %}

{{ entity.type|chill_entity_render_box }}

{% if entity.date %} {{ entity.date|format_date('long') }} {% endif %} {% if entity.date %} {{ entity.duration|date('H:i') }} {% endif %}
  • {{ 'By'|trans }}: {{ entity.createdBy|chill_entity_render_box }}
  • {{ 'For'|trans }}: {{ entity.agent|chill_entity_render_box }}
{% endfor %}
{{ chill_pagination(paginator) }} {% endif %} {% endblock %}