{% extends 'fundraising/index.html' %} {% load i18n static %} {% block messages %} {% if messages %} {% for message in messages %}

{{ message }}

{% endfor %} {% endif %} {% endblock messages %} {% block content %}

{% translate "Manage your donations to the Django Software Foundation" %}

{% blocktranslate trimmed %} Your support is invaluable to continue the rapid development of Django and helps the Django Fellowship program in particular. Thank you! {% endblocktranslate %}

{% translate "Manage your participation in the fundraising campaigns" %}

{% translate "Information entered below will be visible on all of your donations to the Django Project." %}

{% csrf_token %} {% include 'fundraising/includes/_form.html' with form=hero_form %}
{# Always include to avoid "Management form has been tampered with" if no recurring donations exist #} {{ modify_donations_formset.management_form }} {% if recurring_donations %}

{% translate "Modify your recurring donations" %}

{% translate "Update the time interval or amount of your recurring donation here:" %}

{% for form in modify_donations_formset %} {% include 'fundraising/includes/_form.html' %}
{% endfor %}

{% translate "Cancel your recurring donations" %}

{% translate "You can cancel your recurring donation to the Django Software Foundation anytime." %}

{% else %} {% endif %} {% if past_payments %}

{% translate "Your past donations" %}

{% endif %} {% endblock content %} {% block content-extra %}{% endblock %}