{% extends "admin/layout.html" %} {% block title %}Admin Dashboard - Trade Signals{% endblock %} {% block content %}

Dashboard

Key metrics and products overview

Active Customers
{{ active_customers_count }}
Inactive Customers
{{ inactive_customers_count }}
Pending Subscriptions
{{ pending_subscriptions_count }}
Active Subscriptions
{{ active_subscriptions_count }}
Expired Subscriptions
{{ expired_subscriptions_count }}
Total Revenue
₹{{ "%.0f"|format(total_revenue) }}
Total Signals Generated
{{ total_signals }}
Pending Admin Actions
{{ pending_admin_actions }}
{% if is_superadmin %}

Signals by Product

{% if signals_by_product %} {% for product_data in signals_by_product %} {% endfor %} {% else %} {% endif %}
Package Total Signals Winners Losers In Progress Total Profit Net Profit
{{ product_data.name or 'N/A' }} {{ product_data.total_signals or 0 }} {{ product_data.winners or 0 }} {{ product_data.losers or 0 }} {{ product_data.in_progress or 0 }} Rs {{ "%.2f"|format(product_data.total_profit or 0) }} Rs {{ "%.2f"|format(product_data.total_profit or 0) }}

No signals data available

{% endif %} {% endblock %}