{% extends "layout.html" %} {% block content %}

Domain Monitoring Dashboard

Monitor your domains for Nawala blocking status, Google rankings, and AMP connectivity.

{{ domains|length }}

Total Domains

{% set blocked = namespace(count=0) %} {% for result in monitoring_results %} {% if result['is_blocked'] == 1 %} {% set blocked.count = blocked.count + 1 %} {% endif %} {% endfor %} {{ blocked.count }}

Domains Blocked

{% set amp = namespace(count=0) %} {% for result in monitoring_results %} {% if result['amp_status'] == 'Terhubung' %} {% set amp.count = amp.count + 1 %} {% endif %} {% endfor %} {{ amp.count }}

AMP Connected

How It Works

This system monitors your domains for Nawala blocking status, checks Google search rankings, and verifies AMP connectivity.


When a domain is blocked, the system will send a Telegram notification with detailed information about the domain's status.

Recent Activity
{% for result in monitoring_results[:5] %} {% endfor %}
Domain Status Google Rank AMP Status Last Checked
{{ result['domain'] }} {% if result['is_blocked'] == 1 %} Blocked {% else %} Unblocked {% endif %} {{ result['google_rank'] }} {% if result['amp_status'] == 'Terhubung' %} Connected {% else %} Disconnected {% endif %} {{ result['checked_at'] }}

Add New Domain

{% if error %} {% endif %}
Enter domain name without http:// or www
Used for Google search ranking checks

Your Domains {{ domains|length }}

{% if domains %}
{% for domain in domains %}
{{ domain['domain'] }}
Brand: {{ domain['brand'] }}

Added on: {{ domain['created_at'] }}

{% endfor %}
{% else %}
No domains found. Add a domain to start monitoring.
{% endif %}

Monitoring Results

Manual Domain Check
{% if monitoring_results %}
{% for result in monitoring_results %} {% endfor %}
Domain Brand Status Google Rank AMP Status Last Checked
{{ result['domain'] }} {{ result['brand'] }} {% if result['is_blocked'] == 1 %} Blocked {% else %} Unblocked {% endif %} {{ result['google_rank'] }} {% if result['amp_status'] == 'Terhubung' %} Connected {% else %} Disconnected {% endif %} {{ result['checked_at'] }}
{% else %}
No monitoring results available yet. Results will appear once the system has checked your domains.
{% endif %}

Telegram Settings

Telegram Bot Configuration
You can get a token by creating a bot with @BotFather
This is the ID of the chat/group where the bot will send notifications
Test Telegram Connection

Send a test message to verify your Telegram bot is configured correctly.

{% endblock %}