{% extends '@ChillMain/CRUD/Admin/index.html.twig' %} {% block admin_content %} {% embed '@ChillMain/CRUD/_index.html.twig' %} {% block table_entities_thead_tr %} {{ 'Id'|trans }} {{ 'Title'|trans }} {{ 'goal.results'|trans }} {{ 'goal.desactivationDate'|trans }}   {% endblock %} {% block table_entities_tbody %} {% for entity in entities %} {{ entity.id }} {{ entity.title|localize_translatable_string }} {% for sa in entity.results %} {{ sa.title|localize_translatable_string }}{% if not loop.last %},{% else %}.{% endif %} {% endfor %} {% if entity.desactivationDate is not null %} {{ entity.desactivationDate|date('Y-m-d') }} {% endif %} {% endfor %} {% endblock %} {% block actions_before %}
  • {{'Back to the admin'|trans}}
  • {% endblock %} {% endembed %} {% endblock %}