2012-02-15 16:03:58 +00:00
{% extends "basepledge.html" %}
2012-01-09 17:36:03 +00:00
{% block title %}Pledge Cancelled{% endblock %}
{% block extra_extra_head %}
< link type = "text/css" rel = "stylesheet" href = "/static/css/campaign.css" / >
{% endblock %}
{% block doccontent %}
2012-01-10 23:26:04 +00:00
{% if transaction %}
2012-01-11 01:15:39 +00:00
< div > You were about to pledge ${{transaction.amount}} to < a href = "{% url work work.id %}" > {{work.title}}< / a > but hit the cancel link.
Naturally, we won't be charging your PayPal account for this campaign unless you give permission.< / div >
< div > However, the campaign can definitely make use of your pledge -- so won't you reconsider?< / div >
< div > You < a href = "{{try_again_url}}" > can finish the pledge transaction< / a > .< / div >
2012-01-10 23:26:04 +00:00
{% else %}
2012-02-21 14:24:23 +00:00
< div > We're sorry; we can't figure out which transaction you're talking about. If you meant to cancel a pledge, please go to the book's page and hit the Modify link.< / div >
2012-01-10 23:26:04 +00:00
{% endif %}
2012-01-11 01:15:39 +00:00
2012-01-09 17:36:03 +00:00
{% endblock %}