{% extends 'base.html' %} {% load static %} {% block title %}Reports & Statements Dashboard{% endblock %} {% block content %}

๐Ÿ“Š Report Generator Dashboard

Generate comprehensive reports and statements with detailed logging

๐Ÿ””View Logs
{% if executive_summary and 'error' not in executive_summary %}

Total Loans

{{ executive_summary.total_loans|default:0 }}

๐Ÿ’ต

Active Loans

{{ executive_summary.active_loans|default:0 }}

๐Ÿ“ˆ

Collection Rate

{{ executive_summary.collection_rate|default:0|floatformat:1 }}%

Overdue Loans

{{ executive_summary.overdue_loans|default:0 }}

โš ๏ธ
{% endif %}

๐Ÿ“Š System Reports

{{ report_types|length }} Available
{% for report in report_types %}

{{ report.name }}

{{ report.description }}

{% for format in report.formats %} {% endfor %}
{% endfor %}

๐Ÿงพ Individual Statements

{{ statement_types|length }} Types
{% for statement in statement_types %}

{{ statement.name }}

{{ statement.description }}

{% if statement.id == 'loan_statement' %}
{% for format in statement.formats %} {% endfor %}
{% elif statement.id == 'client_statement' %}
{% for format in statement.formats %} {% endfor %}
{% endif %}
{% endfor %}

Recent Report Activity

View All Logs โ†’
โฐ

Recent report generation activity will appear here

{% endblock %}
๐Ÿ“ˆ

Collection Rate

{{ executive_summary.collection_rate|default:0|floatformat:1 }}%

Overdue Loans

{{ executive_summary.overdue_loans|default:0 }}

โš ๏ธ
{% endif %}

๐Ÿ“Š System Reports

{{ report_types|length }} Available
{% for report in report_types %}

{{ report.name }}

{{ report.description }}

{% for format in report.formats %} {% endfor %}
{% endfor %}

๐Ÿงพ Individual Statements

{{ statement_types|length }} Types
{% for statement in statement_types %}

{{ statement.name }}

{{ statement.description }}

{% if statement.id == 'loan_statement' %}
{% for format in statement.formats %} {% endfor %}
{% elif statement.id == 'client_statement' %}
{% for format in statement.formats %} {% endfor %}
{% endif %}
{% endfor %}

Recent Report Activity

View All Logs โ†’
โฐ

Recent report generation activity will appear here

{% endblock %}