src/Aviatur/TwigBundle/Resources/views/compensar/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.                 <tr>
  17.                     <td>Bogotá</td>
  18.                     <td>382 1853</td>
  19.                 </tr>
  20.             {% endif %}
  21.         </tbody>
  22.     </table>
  23. {% endblock %}
  24. {% endembed %}