{% extends "base.html" %} {% load static %} {% load humanize %} {% block title %}Investment Dashboard - IHICL Investment{% endblock %} {% block content %}

Investment Dashboard

{% if performance_data %} {% endif %}
{% if messages %}
{% for message in messages %} {% endfor %}
{% endif %}
{% if investor_profile.get_full_title %} {{ investor_profile.get_full_title }} {{ user.first_name }} {{ user.last_name }} {% else %} Welcome, {{ user.first_name }} {% endif %}

{{ user.email }}

{% if user.investor_profile.telephone %}

{{ user.investor_profile.telephone }}

{% endif %}
{% csrf_token %}
Total Investment

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

{{ investment_count }} active investment{{ investment_count|pluralize }}

Current Value

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

+{{ roi_percentage|floatformat:2 }}% ROI

Pending Returns

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

Next payout: {{ next_payout_date|default:"TBD" }}

Portfolio Overview
{% if investor_portfolio %}
{% for investment in investor_portfolio %} {% endfor %}
Investment Type Amount Current Value ROI Status
{{ investment.investment_type }} ₦{{ investment.amount|floatformat:2|intcomma }} ₦{{ investment.current_value|floatformat:2|intcomma }} +{{ investment.roi_percentage|floatformat:2 }}% {{ investment.get_status_display }}
{% else %}

You don't have any investments yet.

Explore Investments
{% endif %}
Recent Transactions
{% if recent_transactions %}
{% for transaction in recent_transactions %}
{{ transaction.description }}
{{ transaction.date|date:"d M Y, H:i" }}
{{ transaction.get_status_display }}
{% if transaction.transaction_type == 'withdrawal' or transaction.transaction_type == 'investment' %}-{% else %}+{% endif %}₦{{ transaction.amount|floatformat:2|intcomma }}
{% endfor %}
{% else %}

No transactions found.

{% endif %}
Portfolio Performance
{% if performance_data %} {% else %}

No performance data available yet.

{% endif %}
Next of Kin Information
{% if next_of_kin %}

Name: {{ next_of_kin.full_name }}

Relationship: {{ next_of_kin.relationship }}

Email: {{ next_of_kin.email }}

Phone: {{ next_of_kin.phone }}

Address: {{ next_of_kin.address|linebreaksbr }}

{% else %}

You haven't added a next of kin yet.

{% endif %}
{% endblock %}