{% extends "admin/change_list.html" %}
{% load static %}
{% block result_list %}
{% include "admin/payments/_components/dashboard_header.html" with title="API Keys Overview" icon="🔑" %}
{% if api_key_stats %}
{% with stats=api_key_stats %}
{% include "admin/payments/_components/stats_card.html" with title="Total Keys" value=stats.total_keys color="primary" %}
{% include "admin/payments/_components/stats_card.html" with title="Active" value=stats.active_keys color="success" %}
{% include "admin/payments/_components/stats_card.html" with title="Expiring Soon" value=stats.expiring_soon color="warning" %}
{% include "admin/payments/_components/stats_card.html" with title="Expired" value=stats.expired_keys color="error" %}
{% endwith %}
{% endif %}
Usage Statistics
📊 Total Requests: {{ stats.total_requests|default:0 }}