{% extends "base.html" %} {% block title %}{{ goal.name }} — History{% endblock %} {% block page_title %}{{ goal.name }}{% endblock %} {% block topbar_actions %} Add Contribution {% endblock %} {% block content %}
{{ goal.current_amount | currency }} {{ goal.target_amount | currency }}
{{ goal.progress_percent }}% complete
{% if projection %}
Projected completion
{{ projection.strftime('%B %Y') }}
{% endif %} {% if goal.target_date %}
Target: {{ goal.target_date.strftime('%b %d, %Y') }}
{% endif %}
Contribution History {{ contribs|length }} contributions
{% if contribs %} {% for c in contribs %} {% endfor %}
DateAmountNotesActions
{{ c.date.strftime('%b %d, %Y') }} +{{ c.amount | currency }} {{ c.notes or '—' }}
{% else %}

No contributions yet.

{% endif %}
{% endblock %}