{% extends '@ChillMain/CRUD/Admin/index.html.twig' %} {% block admin_content %} {% embed '@ChillMain/CRUD/_index.html.twig' %} {% block table_entities_thead_tr %} {{ 'Title'|trans }} {{ 'news.startDate'|trans }} {{ 'news.endDate'|trans }} {% endblock %} {% block table_entities_tbody %} {% for entity in entities %} {{ entity.title }} {{ entity.startDate|format_date('long') }} {% if entity.endDate is not null %} {{ entity.endDate|format_date('long') }} {% else %} {{ 'news.noDate'|trans }} {% endif %} {% endfor %} {% endblock %} {% block actions_before %}
  • {{'Back to the admin'|trans}}
  • {% endblock %} {% endembed %} {% endblock %}