🌤️ Weather Reporter Agent
Get detailed weather reports for any location worldwide with current conditions, forecasts, and weather alerts.
💰 Cost: {{ agent.price }} AED
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
💳 Your Wallet
{% if user.is_authenticated %}
{{ user.wallet_balance|floatformat:2 }} AED
{% else %}
0.00 AED
{% endif %}
Available Balance
{% if user.is_authenticated %}
{% if user.wallet_balance >= agent.price %}
{% else %}
Insufficient balance! You need {{ agent.price }} AED.
💰 Top Up Wallet
{% endif %}
{% else %}
🔑 Login to Continue
{% endif %}
💡 How it works
-
•
Enter any location worldwide
-
•
Choose your report type
-
•
Get real-time weather data
-
•
Download or copy results
{% if weather_results %}
✅
Weather Report
✅ Complete
{% if weather_results.current %}
🌡️ Current Weather
{{ weather_results.current.temperature }}°C
{{ weather_results.current.weather_description }}
Feels Like
{{ weather_results.current.feels_like }}°C
Humidity
{{ weather_results.current.humidity }}%
Wind Speed
{{ weather_results.current.wind_speed }} km/h
Pressure
{{ weather_results.current.pressure }} hPa
Visibility
{{ weather_results.current.visibility }} km
{% endif %}
{% if weather_results.forecast %}
📅 5-Day Forecast
{% for day in weather_results.forecast|slice:":5" %}
{{ day.date|date:"D" }}
{{ day.temp }}°C
{{ day.description }}
{% endfor %}
{% endif %}
{% endif %}