{% extends 'base.html' %} {% load humanize %} {% block title %}Registration Fees Analytics - Enhanced Report{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Comprehensive analysis of client registration fees and onboarding revenue
Total Registration Income
Total Registrations
Average Fee
Collection Rate
Monthly Growth
Paid Registrations
KSh {{ report_data.payment_status.paid_amount|default:0|floatformat:0|intcomma }}
Pending Payments
KSh {{ report_data.payment_status.pending_amount|default:0|floatformat:0|intcomma }}
Overdue Payments
KSh {{ report_data.payment_status.overdue_amount|default:0|floatformat:0|intcomma }}
Waived Fees
KSh {{ report_data.payment_status.waived_amount|default:0|floatformat:0|intcomma }}
| Client Details | Registration Date | Fee Amount | Payment Status | Payment Date | Payment Method | Notes | Actions |
|---|---|---|---|---|---|---|---|
|
{{ registration.client_name }}
{{ registration.client_phone }}
ID: {{ registration.client_id_number|default:"N/A" }}
|
{{ registration.registration_date|date:"M d, Y" }}
{{ registration.registration_date|date:"H:i" }}
|
KSh {{ registration.fee_amount|floatformat:0|intcomma }}
{% if registration.discount_amount > 0 %}
Discount: KSh {{ registration.discount_amount|floatformat:0|intcomma }}
{% endif %}
|
{{ registration.payment_status|default:'Pending'|title }} |
{% if registration.payment_date %}
{{ registration.payment_date|date:"M d, Y" }}
{{ registration.payment_date|date:"H:i" }}
{% else %}
Not paid
{% endif %}
|
{% if registration.payment_method %} {{ registration.payment_method|title }} {% else %} N/A {% endif %} |
{{ registration.notes|default:"No notes"|truncatechars:50 }}
|
{% if registration.payment_status == 'pending' or registration.payment_status == 'overdue' %}
{% endif %}
|
âšī¸
No Registration Fees FoundNo registration fees found for the selected period and filters. |
|||||||