{% extends "admin/base_site.html" %} {% load static %} {% block title %}IGNY8 Dashboard{% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block content %}

IGNY8 Admin Dashboard

Real-time operational metrics and system health monitoring

{% if alerts %}

Active Alerts

{% for alert in alerts %}
{{ alert.icon }} {{ alert.message }}
{{ alert.action }}
{% endfor %}
{% else %}

All Systems Operational

No active alerts or issues detected

{% endif %}

Accounts

Total Accounts {{ accounts.total }}
Active Accounts {{ accounts.active }}
Low Credit Accounts {{ accounts.low_credit }}

Content

Created This Week {{ content.this_week }}
Created This Month {{ content.this_month }}
Pending Tasks {{ content.tasks_pending }}
In Progress {{ content.tasks_in_progress }}

Billing

Pending Payments {{ billing.pending_payments }}
Revenue This Month ${{ billing.payments_this_month|floatformat:2 }}
Credits Used This Month {{ billing.credit_usage_this_month }}

Automation & Sync

Automations Running {{ automation.running }}
Failed This Week {{ automation.failed_this_week }}
Failed Syncs Today {{ integration.sync_failed_today }}

Celery Tasks

Failed Today {{ celery.failed_today }}
Pending Tasks {{ celery.pending }}

Quick Actions

{% endblock %}