{% extends '@ChillMain/CRUD/Admin/index.html.twig' %} {% block admin_content %} {% embed '@ChillMain/CRUD/_index.html.twig' %} {% block table_entities_thead_tr %} {{ 'Name'|trans }} {{ 'Phonenumber1'|trans }} {{ 'Phonenumber2'|trans }} {{ 'Email'|trans }} {{ 'Address'|trans }} {{ 'Active'|trans }} {% endblock %} {% block table_entities_tbody %} {% for entity in entities %} {{ entity.name }} {{ entity.phonenumber1|chill_format_phonenumber }} {{ entity.phonenumber2|chill_format_phonenumber }} {{ entity.email }} {% if entity.address is not null %} {{ entity.address| chill_entity_render_box }} {% endif %} {%- if entity.active -%} {%- else -%} {%- endif -%} {% endfor %} {% endblock %} {% block actions_before %}
  • {{'Back to the admin'|trans}}
  • {% endblock %} {% endembed %} {% endblock %}