{% embed twig_exists('@AviaturTwig/'~ agency_folder.twigFlux() ~'/General/Components/component_modal.html.twig') %}
{% block modal_id %}js-modalPhones{% endblock modal_id %}
{% block modal_title %}Bienvenido en {{ (app.session.get('domain')) }} ¡Llámenos!{% endblock modal_title %}
{% block modal_body_id %}{% endblock modal_body_id %}
{% block modal_body %}
<table class="table table-condensed">
<tbody>
{% if agencyPhones is defined %}
{% for key, phone in agencyPhones %}
<tr>
<td>{{ key }}</td>
<td>{{ phone }}</td>
</tr>
{% endfor %}
{% else %}
{% endif %}
</tbody>
</table>
{% endblock %}
{% endembed %}