{% load static %} Weather Reporter Agent - NetCop AI Hub

🌤️ 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 %}
{% csrf_token %}

📍 Enter Location

Examples: "New York", "London, UK", "Tokyo, Japan", "37.7749,-122.4194"

📊 Report Type

{% if processing %}
⏳ Processing...
{{ processing_status|default:"Getting weather data..." }}
{% 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

🌍 {{ weather_results.location }}

Generated at {{ weather_results.generated_at|date:"F j, Y g:i A" }}
{% if weather_results.current %}

🌡️ Current Weather

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" }}
weather
{{ day.temp }}°C
{{ day.description }}
{% endfor %}
{% endif %}
{% endif %}