2012-07-16 18:48:10 +00:00
{% extends "basepledge.html" %}
{% load humanize %}
{% block title %}Pledge Recharge{% endblock %}
2013-03-08 19:16:24 +00:00
{% block extra_css %}
2013-05-24 18:54:05 +00:00
< link type = "text/css" rel = "stylesheet" href = "/static/css/campaign2.css" / >
2012-07-16 18:48:10 +00:00
{% endblock %}
{% block doccontent %}
{% if error %}
{{error}}
{% else %}
{% if transaction %}
2014-12-17 17:50:23 +00:00
< div > Thank you for pledging ${{ transaction.amount|floatformat:2|intcomma}} to the campaign for < a href = "{% url work work.id %}" > {{ work.title }}< / a > .
2012-07-16 18:48:10 +00:00
The attempt to collect your payment was unsucessful.< br > < br >
2014-12-17 17:50:23 +00:00
Please authorize another attempt to collect your pledge of ${{ transaction.amount|floatformat:2|intcomma }}
2012-07-16 18:48:10 +00:00
by clicking on the following link:
< a href = "{{recharge_url|safe}}" > Authorize recharge via {{payment_processor}} payments< / a > .< / div >
{% else %}
< div > You do not currently need to authorize another payment for the successful campaign for < a href = "{% url work work.id %}" > {{ work.title }}< / a > . < / div >
{% endif %}
{% endif %}
{% endblock %}