{% extends 'base.html' %} {% load humanize %} {% load static %} {% block title %}Registration Fees Report{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if report_data.period.period_display == 'All Time' %} All client registration fees collected since system launch {% else %} Registration fees for {{ report_data.period.period_display }} {% endif %}
KES {{ report_data.summary.total_registration_income|default:0|floatformat:2|intcomma }}
{{ report_data.summary.total_registrations|default:0 }}
KES {{ report_data.summary.average_registration_fee|default:0|floatformat:2|intcomma }}
{{ additional_analytics.payment_rate|default:0|floatformat:1 }}%
{% if report_data.summary.growth_vs_last_period >= 0 %}+{% endif %}{{ report_data.summary.growth_rate|default:0|floatformat:1 }}%
{% if report_data.summary.growth_vs_last_period >= 0 %} โ KES {{ report_data.summary.growth_vs_last_period|default:0|floatformat:2|intcomma }} {% else %} โ KES {{ report_data.summary.growth_vs_last_period|default:0|floatformat:2|intcomma }} {% endif %}
KES {{ report_data.summary.highest_single_fee|default:0|floatformat:2|intcomma }}
Maximum registration fee collected
{{ report_data.summary.average_days_to_pay|default:0|floatformat:1 }} days
Mean time from registration to payment
{% if report_data.summary.growth_vs_last_period >= 0 %}+{% endif %}KES {{ report_data.summary.growth_vs_last_period|default:0|floatformat:2|intcomma }}
Arithmetic difference between periods
{{ report_data.fees|length }} fee payment{{ report_data.fees|length|pluralize }} found
{% endif %}| ๐คClient Name | ๐งพRegistration Fee | ๐ตAmount | ๐ณPayment Method | ๐ Date Paid | โStatus |
|---|---|---|---|---|---|
|
{{ fee.customer_name }}
{% if fee.source == 'Client Registration' %}
Client Registration
{% endif %}
|
{{ fee.fee_name }}
{% if fee.product_type != 'client_registration' %}
{{ fee.product_type|title }}
{% endif %}
|
KES {{ fee.amount|floatformat:2|intcomma }} | {{ fee.payment_method|title }} |
{{ fee.payment_date|date:"M d, Y" }}
{{ fee.payment_date|date:"H:i" }}
|
โ {{ fee.payment_status }} |
{% if filters.start_date or filters.end_date %} No registration fees match the selected date range. {% else %} No registration fees have been recorded yet. {% endif %}