annotate gpp/templates/donations/thanks.html @ 339:b871892264f2
Adding the sg101 IRC bot code to SVN. This code is pretty rough and needs love, but it gets the job done (one of my first Python apps). This fixes #150.
author |
Brian Neal <bgneal@gmail.com> |
date |
Sat, 26 Feb 2011 21:27:49 +0000 |
parents |
2934a867c2ef |
children |
2541d27ca056 |
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> » 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@317
|
9 We couldn't do this site without support from people like you. You rock!
|
bgneal@317
|
10 </p>
|
bgneal@36
|
11 {% endblock %}
|