view gpp/templates/donations/thanks.html @ 507:8631d32e6b16

Some users are still having problems with the pop-up login. I think they are actually getting 403s because of the CSRF protection. So I have modified the base template to always have a javascript variable called csrf_token available when they aren't logged in. The ajax_login.js script was then modified to send this value with the ajax post. Fingers crossed.
author Brian Neal <bgneal@gmail.com>
date Sun, 04 Dec 2011 03:05:21 +0000
parents 2541d27ca056
children
line wrap: on
line source
{% extends 'base.html' %}
{% load url from future %}
{% block title %}Thanks For The Donation{% endblock %}
{% block content %}
<div class="breadcrumbs"><a href="{% url 'donations-index' %}">Donations</a> &raquo; Thanks</div>
<h2>Thank-You For The Donation!</h2>
<p>
Thank-you for your donation to <strong>SurfGuitar101.com</strong>, it is greatly appreciated!
We couldn't maintain this site without support from people like you. You rock!
</p>
<p>
Your PayPal transaction has been completed, and a recipt for your donation has been emailed to you. You may log into your account at <a href="https://www.paypal.com/us">PayPal</a> to view details of this transaction.
</p>
{% endblock %}