{% extends "base.html" %} {% block title %}{{ current_user.full_name }} - Member Dashboard{% endblock %} {% block content %}
{% if monthly_payment_due %}

Monthly Payment Due

Your payment for {{ current_month.strftime('%B %Y') }} is overdue

Contact admin to record payment
Submit Now Overdue
{% else %}

Payment Complete

Your payment for {{ current_month.strftime('%B %Y') }} has been recorded

{% endif %}
My Total Contributed
৳{{ "%.2f"|format(total_contributed) }}
All contributions combined
Monthly Total
৳{{ "%.2f"|format(monthly_total) }}
{{ monthly_contributions|length }} payments
Special Collections
৳{{ "%.2f"|format(special_total) }}
{{ special_contributions|length }} contributions
Group Members
{{ total_members }}
Active participants

{{ member_group.name }} - Group Total Contributions

All Monthly Contributions

৳{{ "%.2f"|format(group_monthly_total) }}

From all {{ total_members }} members

All Special Collections

৳{{ "%.2f"|format(group_special_total) }}

Group special funds

Total Penalties

৳{{ "%.2f"|format(group_penalty_total) }}

Group penalty charges

Total Bonuses

৳{{ "%.2f"|format(group_bonus_total) }}

Group bonus credits

{{ member_group.name }} - Total Group Savings

৳{{ "%.2f"|format(total_group_deposits) }}

Combined contributions from all {{ total_members }} active members

This represents the complete financial fund of your group

My Personal Contribution Breakdown

Monthly Contributions

৳{{ "%.2f"|format(monthly_total) }}

{{ monthly_contributions|length }} payments

Special Collections

৳{{ "%.2f"|format(special_total) }}

{{ special_contributions|length }} contributions

Penalty Amounts

৳{{ "%.2f"|format(penalty_total) }}

Additional charges

Bonus Amounts

৳{{ "%.2f"|format(bonus_total) }}

Additional credits

Grand Total Contributions

৳{{ "%.2f"|format(total_contributed) }}

All time contributions to {{ member_group.name }}

My Contribution Trends

Top Contributors

{% for ranking in member_rankings[:5] %}
{{ loop.index }}
{{ ranking.full_name }}
{% if ranking.custom_id %}
{{ ranking.custom_id }}
{% endif %}
৳{{ "%.2f"|format(ranking.total_amount) }}
{% if ranking.id == current_user.id %}
You
{% endif %}
{% endfor %}

Recent Group Activity

{% for contribution in recent_group_contributions[:8] %}
{{ contribution.member.full_name }}
{{ contribution.contribution_type.title() }} contribution
৳{{ "%.2f"|format(contribution.amount) }}
{{ contribution.created_at.strftime('%b %d') }}
{% endfor %}

Upcoming Events

{% if upcoming_events %}
{% for event in upcoming_events %}

{{ event.name }}

{{ event.description }}

৳{{ "%.2f"|format(event.target_amount) }}
Target
{{ event.start_date.strftime('%b %d') }} - {{ event.end_date.strftime('%b %d, %Y') }}
{% if event.is_active %} Active {% else %} Inactive {% endif %}
{% endfor %}
{% else %}

No upcoming events

{% endif %}
{% endblock %}