annotate gpp/templates/donations/thanks.html @ 492:3c48a555298d

Added a custom tag to display a link to a profile. Refactored the avatar tag to optionally display a profile link around the image. Removed the width and height attributes from the avatar image tag. I think this was causing disk hits whenever those properties were not cached. The avatar tag is now an inclusion tag.
author Brian Neal <bgneal@gmail.com>
date Sat, 22 Oct 2011 00:07:50 +0000
parents 2541d27ca056
children
rev   line source
bgneal@36 1 {% extends 'base.html' %}
bgneal@310 2 {% load url from future %}
bgneal@36 3 {% block title %}Thanks For The Donation{% endblock %}
bgneal@36 4 {% block content %}
bgneal@310 5 <div class="breadcrumbs"><a href="{% url 'donations-index' %}">Donations</a> &raquo; Thanks</div>
bgneal@36 6 <h2>Thank-You For The Donation!</h2>
bgneal@317 7 <p>
bgneal@317 8 Thank-you for your donation to <strong>SurfGuitar101.com</strong>, it is greatly appreciated!
bgneal@340 9 We couldn't maintain this site without support from people like you. You rock!
bgneal@340 10 </p>
bgneal@340 11 <p>
bgneal@340 12 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.
bgneal@317 13 </p>
bgneal@36 14 {% endblock %}