{% extends "admin/base_site.html" %} {% load static %} {% block content %}

IGNY8 Dashboard

Operational metrics and system health

{% if alerts %}
{% for alert in alerts %}
{{ alert.message }}
{{ alert.action }} →
{% endfor %}
{% endif %}

Accounts

Total {{ total_accounts }}
Active {{ active_accounts }}
{% if critical_credit_accounts > 0 %}
Critical Credits {{ critical_credit_accounts }}
{% endif %} {% if low_credit_accounts > 0 %}
Low Credits {{ low_credit_accounts }}
{% endif %}
View All →

Content

This Week {{ content_this_week }}
This Month {{ content_this_month }}
Tasks Pending {{ tasks_pending }}
In Progress {{ tasks_in_progress }}
View All →

Billing

{% if pending_payments > 0 %}
Pending Approval {{ pending_payments }}
{% endif %}
Revenue (30d) ${{ payments_this_month|floatformat:2 }}
Credits Used (30d) {{ credit_usage_this_month|floatformat:0 }}
View Payments →

Automation

{% if automation_running > 0 %}
Running Now {{ automation_running }}
{% endif %}
Success Rate (7d) {{ automation_success_rate }}%
{% if automation_failed > 0 %}
Failed (7d) {{ automation_failed }}
{% endif %}
View Runs →

Integration Health

Syncs Today {{ sync_success_today }} success
{% if sync_failed_today > 0 %}
{{ sync_failed_today }} failed
{% endif %}
View Sync Events →

Background Tasks

{% if celery_pending > 0 %}
Pending {{ celery_pending }}
{% endif %} {% if celery_failed > 0 %}
Failed (7d) {{ celery_failed }}
{% endif %} {% if celery_pending == 0 and celery_failed == 0 %}
✓ All tasks healthy
{% endif %}
View Tasks →

Sites

Total Sites {{ total_sites }}
Active Sites {{ active_sites }}
View Sites →
{% endblock %}