{% extends 'ccc/campaigns/base.html' %} {% load staticfiles %} {% block title %} Payment {{ campaign.name }}{% endblock title %} {% block css %} {% endblock css %} {% block content %}
Make payment
{% csrf_token %}

Billing Details

{% include 'ccc/fragments/form_field.inc.html' with field=form.billing_name %} {% include 'ccc/fragments/form_field.inc.html' with field=form.address_line1 %} {% include 'ccc/fragments/form_field.inc.html' with field=form.address_line2 %} {% include 'ccc/fragments/form_field.inc.html' with field=form.address_city %} {% include 'ccc/fragments/form_field.inc.html' with field=form.address_state %} {% include 'ccc/fragments/form_field.inc.html' with field=form.address_zip %} {% include 'ccc/fragments/form_field.inc.html' with field=form.address_country %}

Payment Details

{{ payment_error }}

{% include 'ccc/fragments/form_field.inc.html' with field=form.fullname %} {% include 'ccc/fragments/form_field.inc.html' with field=form.card_number %} {% include 'ccc/fragments/form_field.inc.html' with field=form.expiration %} {% include 'ccc/fragments/form_field.inc.html' with field=form.cvc %}

{{ amount }}

{% endblock content %} {% block scripts %} {% endblock %}