{% extends "base.html" %} {% block title %}Dashboard - Cable Operator{% endblock %} {% block content %}

Quick overview of your customer payments.

Total Customers
{{ total_customers_count }}
Active Customers
{{ active_customers_count }}
Outstanding ({{ current_billing_period_display }})
{{ outstanding_payments_count }}
Collections Today
₹ {{ "%.2f"|format(collections_today) }}

Quick Actions

Add Customer Record Payment View Reports

Customer Payment Status (for {{ current_billing_period_display }})

{% if search_term_home %} Clear {% endif %}
{% if customers_list_on_home %}
{% for customer_info in customers_list_on_home %} {% endfor %}
Name STB No. Monthly Charge Account Status Payment ({{ current_billing_period_display }}) Actions
{{ customer_info.name }} {{ customer_info.set_top_box_number }} ₹ {{ "%.2f"|format(customer_info.monthly_charge) }} {{ customer_info.status }} {% if customer_info.paid_current_month %} Received {% else %} {% if customer_info.status == 'Active' %} Pending {% else %} - (Inactive) - {% endif %} {% endif %} {% if customer_info.status == 'Active' and not customer_info.paid_current_month %} {% endif %}
{% else %} {% if search_term_home %}

No customers found matching "{{ search_term_home }}". Clear search.

{% else %}

No customers found. Add one now!

{% endif %} {% endif %}
{% endblock %}