{% extends "base.html" %} {% block title %}Weather Dashboard - Orchid Continuum{% endblock %} {% block content %}

Weather Dashboard

Monitor weather conditions for optimal orchid care

{% if active_alerts %}
Weather Alerts
{% for alert in active_alerts[:3] %}
{{ alert.title }} - {{ alert.message }} {% if alert.orchid_care_advice %}
💡 {{ alert.orchid_care_advice }} {% endif %}
{% endfor %} {% if active_alerts|length > 3 %} View All Alerts ({{ active_alerts|length }}) {% endif %}
{% endif %}
Current Conditions
{% if recent_weather %} {% set latest = recent_weather[0] %}

{{ "%.1f"|format(latest.temperature) if latest.temperature }}°C

{{ latest.description or 'Current Temperature' }}

{{ latest.location_name or 'Location' }}
{% if latest.humidity %}
{{ "%.0f"|format(latest.humidity) }}%
Humidity
{% endif %} {% if latest.wind_speed %}
{{ "%.1f"|format(latest.wind_speed) }} km/h
Wind Speed
{% endif %} {% if latest.pressure %}
{{ "%.0f"|format(latest.pressure) }} hPa
Pressure
{% endif %} {% if latest.vpd %}
{{ "%.2f"|format(latest.vpd) }} kPa
VPD
{% endif %}
{% set is_orchid_friendly = latest.is_orchid_friendly() %}
{% if is_orchid_friendly %} Excellent conditions for orchid growing {% else %} Challenging conditions - monitor your orchids carefully {% endif %}
{% else %}

No weather data available

Add Location
{% endif %}
7-Day Forecast
{% if forecast_data %}
{% for forecast in forecast_data[:7] %}
{{ forecast.recorded_at.strftime('%a') }}
{{ forecast.recorded_at.strftime('%m/%d') }}
{{ forecast.description or 'Forecast' }}
{% if forecast.temperature_max and forecast.temperature_min %} {{ "%.0f"|format(forecast.temperature_max) }}° {{ "%.0f"|format(forecast.temperature_min) }}° {% endif %}
{% endfor %}
{% else %}

No forecast data available

{% endif %}
Recent Trends
{% if recent_weather|length > 1 %} {% else %}

Need more data for trends

{% endif %}
Tracked Locations
Add Location
{% if locations %}
{% for location in locations %}
{{ location.name }}

{{ location.city }}{% if location.state_province %}, {{ location.state_province }}{% endif %}
{{ location.growing_type|title }} growing

{% endfor %}
{% else %}
No locations tracked yet

Add your growing locations to start tracking weather conditions

Add First Location
{% endif %}
{% endblock %}