{% extends "base.html" %} {% block content %}
{% if error %}

{{ error }}

{% endif %} {% if current_weather %}

{{ selected_city }}

{{ current_weather.dt | date('H:i') }} {{ current_weather.dt | date('M d, Y') }}
{{ current_weather.weather[0].description }}
{{ current_weather.temp | default(0) | round | int }}°C {{ current_weather.weather[0].description | title }}
Wind: {{ current_weather.wind_speed | default(0) }} m/s
Humidity: {{ current_weather.humidity | default(0) }}%
Precipitation: {{ current_weather.rain | default(0) }} mm

7-Day Forecast

{% for forecast in daily_forecasts %}
{{ forecast.dt | date('D, M d') }}
{{ forecast.weather[0].description }}
{{ forecast.temp.max | default(0) | round | int }}° {{ forecast.temp.min | default(0) | round | int }}°
{% endfor %}
{% elif not error %}

No weather data available. Please try another city.

{% endif %}
{% if current_weather %}

Weather Map

{% if current_weather.get('coord') %} {% set lon = current_weather.coord.lon %} {% set lat = current_weather.coord.lat %}
View Larger Map {% else %}

Map data not available for this location

{% endif %}
{% endif %}
{% endblock %}