templates/tennis_court_availability/parts/weather_headers.html.twig line 1

Open in your IDE?
  1. <th style="text-align: right">Weather<br>
  2.     {% if is_granted('ROLE_ACEIFY') %}
  3.         <a title="3-Hourly" class="btn btn-outline-primary btn-sm" href="{{ path('fetch_weather_data') }}">
  4.             <i style="font-size: 15px; color: gray" class="fas fa-download"></i>
  5.         </a>
  6.         <a title="Hourly" class="btn btn-outline-primary btn-sm"
  7.            href="{{ path('fetch_weather_data_hourly') }}"><i
  8.                     style="font-size: 15px; color: lightgrey" class="fas fa-download"></i>
  9.         </a> <br>
  10.         <a target="_blank" class="btn btn-outline-secondary btn-sm"
  11.            href="https://www.google.com/search?q=google+weather+London&client=firefox-b-d&ei=MgmkZJzCAb3ukdUP8Iyg8A4&ved=0ahUKEwico77q__T_AhU9d6QEHXAGCO4Q4dUDCA4&uact=5&oq=google+weather+London&gs_lp=Egxnd3Mtd2l6LXNlcnAiFWdvb2dsZSB3ZWF0aGVyIExvbmRvbjIKEAAYgAQYRhiAAjIFEAAYgAQyBRAAGIAEMgYQABgWGB4yBhAAGBYYHjIGEAAYFhgeMgYQABgWGB4yBhAAGBYYHjIGEAAYFhgeMgYQABgWGB5I3ApQ5wRYvQhwAXgBkAEAmAGoAaABoAeqAQMwLja4AQPIAQD4AQHCAgoQABhHGNYEGLADwgIIEAAYigUYhgPiAwQYACBBiAYBkAYI&sclient=gws-wiz-serp">
  12.             <i style="font-size: 15px; color: blue" class="fas fa-city"></i>
  13.         </a>
  14.         <a class="btn btn-outline-danger btn-sm" href="{{ path('weather_delete_all') }}">
  15.             <i style="font-size: 15px; color: red" class="fas fa-trash"></i>
  16.         </a>
  17.     {% endif %}
  18. </th>