{% extends 'base.html' %} {% load static %} {% block title %}Weather Reporter Agent - NetCop AI Hub{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}

🌤️ Weather Reporter

{% csrf_token %}
Examples: "New York", "London, UK", "Tokyo, Japan", "37.7749,-122.4194"
Getting Weather Data...
Fetching latest weather information for your location

Weather Report

✅ Complete

💳 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 >= 2.00 %} {% else %}
Insufficient balance! You need 2.00 AED.
💰 Top Up Wallet {% endif %} {% else %} 🔑 Login to Continue {% endif %}

💡 How it works

  • Enter any city name worldwide
  • Choose your preferred report type
  • Get real-time weather data
  • Copy or download detailed reports
{% endblock %} {% block extra_js %} {% endblock %}