{% extends "base.html" %} {% block title %}Events - {{ current_user.full_name }}{% endblock %} {% block content %}

Group Events

Special saving events and campaigns in {{ member_group.name }}

{% if events %}
{% for event in events %}

{{ event.name }}

{{ event.description }}

{% if event.is_active %} Active {% else %} Inactive {% endif %}
৳{{ "%.2f"|format(event.target_amount) }}
Target Amount
{{ event.start_date.strftime('%b %d') }}
Start Date
{{ event.end_date.strftime('%b %d') }}
End Date
My Participation
{% if participations[event.id] %}
Participating
Last contribution: {{ participations[event.id].last_contribution_date.strftime('%b %d, %Y') if participations[event.id].last_contribution_date else 'Not yet' }}
৳{{ "%.2f"|format(participations[event.id].amount_contributed) }}
Contributed
{% else %}

Not participating in this event

Contact your admin to join

{% endif %}
{% endfor %}
{% else %}

No events yet

Your group hasn't created any special saving events yet.

{% endif %}
{% endblock %}