{% extends "base.html" %} {% block title %}My Contributions - {{ current_user.full_name }}{% endblock %} {% block content %}
Monthly Total
৳{{ "%.2f"|format(monthly_total) }}
Special Total
৳{{ "%.2f"|format(special_total) }}
Penalty Total
৳{{ "%.2f"|format(penalty_total) }}
Bonus Total
৳{{ "%.2f"|format(bonus_total) }}

All Contributions

Complete history of your contributions

{% if contributions.items %}
{% for contribution in contributions.items %}
{{ contribution.contribution_type.title() }} Contribution
{% if contribution.contribution_month %} For {{ contribution.contribution_month.strftime('%B %Y') }} {% elif contribution.description %} {{ contribution.description }} {% else %} Recorded on {{ contribution.created_at.strftime('%B %d, %Y') }} {% endif %}
৳{{ "%.2f"|format(contribution.amount) }}
{{ contribution.created_at.strftime('%b %d, %Y') }}
{% endfor %}
{% if contributions.pages > 1 %}
{% if contributions.has_prev %} Previous {% endif %} {% if contributions.has_next %} Next {% endif %}
{% endif %} {% else %}

No contributions yet

Your contribution history will appear here once you make your first payment.

{% endif %}
{% endblock %}