templates/callcenter/cliente.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Cliente{% endblock %}
  3. {% block stylesheets %}
  4.   {{ parent() }}
  5.   <style>
  6.   #map {
  7.     height:100%;
  8.     width: 100%;
  9.   }
  10.   </style>
  11. {% endblock %}
  12. {% block javascripts %}
  13.   {{ parent() }}
  14.   {{ encore_entry_script_tags('sucursal') }}
  15.   <script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
  16. {% endblock javascripts %}
  17. {% block body %}
  18. <div class="container-fluid" {{ stimulus_controller('hello') }}>
  19.   <main class="row bg-white pt-3">
  20.     <aside class="mt-4 mb-5 my-md-0 ps-xl-3 mb-lg-5 col map-sidebar bg-white">
  21.         {{ include('callcenter/_maps.html.twig') }}
  22.       </aside>
  23.     <div class="mt-4 mb-5 my-md-0 ps-xl-3 mb-lg-5 sucursales col-2 bg-white list-group" id="output">
  24.       {{ include('callcenter/_sucursales.html.twig') }}
  25.     </div>
  26.     <div class="mt-4 mb-5 my-md-0 ps-xl-3 mb-lg-5 col bg-white">
  27.       {{ include('callcenter/_cliente.html.twig', { 'form':  form }) }}
  28.     </div>
  29.   </main>
  30. </div>
  31. <script
  32.   src="https://maps.googleapis.com/maps/api/js?key={{ google_api_key }}&libraries=places&v=weekly">
  33. </script>
  34. <script type="text/javascript">
  35. window.onload = function() {
  36.   initMap({{distanciaenminutos}});
  37. }
  38. //prevenir envio de form con la tecla enter
  39. document.addEventListener("keydown", function(event) {
  40.   if (event.keyCode == 13) {
  41.     event.preventDefault();
  42.     return false;
  43.   }
  44. });
  45. </script>
  46. {% endblock %}