{% extends "@ChillMain/Admin/layout_location.html.twig" %} {% block admin_content %}

{{ 'Location list'|trans }}

{% for entity in entities %} {% endfor %}
{{ 'Name'|trans }} {{ 'Phonenumber1'|trans }} {{ 'Phonenumber2'|trans }} {{ 'Email'|trans }} {{ 'Address'|trans }} {{ 'Active'|trans }}
{{ 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 -%}
{% endblock %}