{% load i18n get_datetime_from_timestamp %} {% if meteo.error %}
{% else %}
{% trans "Currently" %} {% include "darkskyapi_light.html" %} {% for day in meteo.daily.data %}

{{ day.time|get_datetime|date:"l" }}

{{ day.summary }}

{{ day.temperatureLow|floatformat:"0" }} - {{ day.temperatureHigh|floatformat:"0" }} °C
{% endfor %}
Powered by Dark Sky
{% endif %}