regluit/frontend/templates/pledge_nevermind.html

23 lines
931 B
HTML
Raw Permalink Normal View History

2015-04-28 03:24:02 +00:00
{% extends 'basepledge.html' %}
2016-05-11 14:41:50 +00:00
{% load humanize %}
2018-01-30 18:19:40 +00:00
{% load sass_tags %}
{% block title %}Pledge Cancelled{% endblock %}
{% block extra_css %}
2018-01-30 18:19:40 +00:00
<link type="text/css" rel="stylesheet" href="{% sass_src 'scss/campaign2.scss' %}" />
{% endblock %}
{% block doccontent %}
{% if transaction %}
2015-04-28 03:24:02 +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 you for this campaign without your permission.</div>
<div>However, the campaign can definitely make use of your pledge. If you hit cancel by mistake, you can <a href="{{ try_again_url }}">finish the pledge transaction</a>.</div>
{% else %}
<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>
{% endif %}
{% endblock %}