{% extends "donations/base.html" %} {% load donation_tags %} {% block title %}{% trans 'Make a Donation' %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}
{% blocktrans %}

Complete the form below to make a donation. The required fields are marked with *.
Thank You!

{% endblocktrans %}
{% if form.errors or captcha_form.captcha.errors %}

{% trans 'Please review the fields below. Thank you.' %}

{% endif %}
{% csrf_token %}
{% if form.donation_amount.errors %}
{{ form.donation_amount.errors }}
{% endif %} {{ form.donation_amount }}
{% if form.allocation %}
{% if form.form.allocation.errors %}
{{ form.form.allocation.errors }}
{% endif %} {{ form.allocation }}
{% endif %}
{% if form.payment_method.errors %}
{{ form.payment_method.errors }}
{% endif %}
{{ form.payment_method }}
{% trans 'Billing Information' %}
{% if form.first_name.errors %}
{{ form.first_name.errors }}
{% endif %} {{ form.first_name }}
{% if form.last_name.errors %}
{{ form.last_name.errors }}
{% endif %} {{ form.last_name }}
{% if form.company.errors %}
{{ form.company.errors }}
{% endif %} {{ form.company }}
{% if form.address.errors %}
{{ form.address.errors }}
{% endif %} {{ form.address }}
{% if form.address2.errors %}
{{ form.address2.errors }}
{% endif %} {{ form.address2 }}
{% if form.city.errors %} {{ form.city.errors }} {% endif %} {% if form.state.errors %} {{ form.state.errors }} {% endif %} {% if form.zip_code %} {{ form.zip_code.errors }} {% endif %}
/ /
{{ form.city }} / {{ form.state }} / {{ form.zip_code }}
{% if form.country.errors %}
{{ form.country.errors }}
{% endif %} {{ form.country }}
{% if form.phone.errors %}
{{ form.phone.errors }}
{% endif %} {{ form.phone }}
{% if form.email.errors %}
{{ form.email.errors }}
{% endif %} {{ form.email }}
{% if form.email_receipt.errors %}
{{ form.email_receipt.errors }}
{% endif %} {{ form.email_receipt }}
{% trans 'Other Information' %}
{% if form.referral_source.errors %}
{{ form.referral_source.errors }}
{% endif %} {{ form.referral_source }}
{% if form.comments.errors %}
{{ form.comments.errors }}
{% endif %} {{ form.comments }}
{% if use_captcha %}
{% if captcha_form.captcha.errors %}
{{ captcha_form.captcha.errors }}
{% endif %} {{ captcha_form.captcha }}
{% endif %}
{% endblock %}