{% extends "admin/base_site.html" %} {% load humanize %} {% block title %}IHICL Investment Dashboard{% endblock %} {% block content %}

IHICL Investment Overview

Total Investors

{{ total_investors }}

Total Investments

{{ total_investments }}

Total Investment Amount

₦{{ total_investment_amount|floatformat:2|intcomma }}

New Investors (30 days)

{{ new_investors }}

Investment Statistics by Status

{% for stat in investment_stats %} {% endfor %}
Status Count Total Amount
{{ stat.status|title }} {{ stat.count }} ₦{{ stat.total_amount|floatformat:2|intcomma }}

Recent Investments

{% for investment in recent_investments %} {% empty %} {% endfor %}
Investor Project Amount Date Status
{{ investment.investor.get_full_name|default:investment.investor.username }} {{ investment.project.title }} ₦{{ investment.amount|floatformat:2|intcomma }} {{ investment.date_invested|date:"M d, Y" }} {{ investment.get_status_display }}
No recent investments
{% endblock %}