src/Aviatur/TwigBundle/Resources/views/coomeva/Flux/General/Components/callUsModal.html.twig line 1

Open in your IDE?
  1. {% embed twig_exists('@AviaturTwig/'~ agency_folder.twigFlux() ~'/General/Components/component_modal.html.twig') %}
  2.     {% block modal_id %}js-modalPhones{% endblock modal_id %}
  3.     {% block modal_title %}Bienvenido en {{ (app.session.get('domain')) }} ¡Llámenos!{% endblock modal_title %}
  4. {% block modal_body_id %}{% endblock modal_body_id %}
  5. {% block modal_body %}
  6.     <table class="table table-condensed">
  7.         <tbody>
  8.             {% if agencyPhones is defined %}
  9.                 {% for key, phone in agencyPhones %}
  10.                     <tr>
  11.                         <td>{{ key }}</td>
  12.                         <td>{{ phone }}</td>
  13.                     </tr>
  14.                 {% endfor %}
  15.             {% else %}
  16.             {% endif %}
  17.         </tbody>
  18.     </table>
  19. {% endblock %}
  20. {% endembed %}