templates/Includes/Partials/weather-tab-content-nextdays.html.twig line 1

Open in your IDE?
  1. {# @var \AppBundle\Model\DataObject\WeatherStation weatherStation #}
  2. {# @var \Pimcore\Model\DataObject\Fieldcollection\Data\WeatherStationDataSet weatherDataSet #}
  3. <div class="weather-box bg-secondary">
  4.     <div class="row justify-content-center vertical-gutter--4">
  5.         {% for index,weatherDataSet in weatherStation.weatherData %}
  6.             {% if index > 1 and index < 5 %}
  7.                 <div class="col-6 col-md-3 vertical-gutter__item">
  8.                     {{ include('Includes/Partials/weather-item-detail.html.twig', {
  9.                         title: weatherDataSet.date.format('d.m.Y'),
  10.                         temp: weatherDataSet.tminDay,
  11.                         tempMax: weatherDataSet.tmaxDay,
  12.                         icon: weatherDataSet.symbDay
  13.                     }) }}
  14.                 </div>
  15.             {% endif %}
  16.         {% endfor %}
  17.     </div>
  18. </div>