regluit/frontend/templates/pledge_recharge.html

34 lines
1.0 KiB
HTML
Raw 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 Recharge{% 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 error %}
{{error}}
{% else %}
{% if transaction %}
2015-04-28 03:24:02 +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>.
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 }}
by clicking on the following link:
<a href="{{recharge_url|safe}}">Authorize recharge via {{payment_processor}} payments</a>.</div>
{% else %}
2015-04-28 03:24:02 +00:00
<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 %}