annotate gpp/templates/donations/thanks.html @ 311:b1c39788e511

Fix #146; use new class-based generic views as function-based generic views are now deprecated.
author Brian Neal <bgneal@gmail.com>
date Thu, 20 Jan 2011 04:40:14 +0000
parents daa2916f5b34
children 2934a867c2ef
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@36 7 <p>Thank-you for your donation to <strong>SurfGuitar101.com</strong>, it is greatly appreciated!</p>
bgneal@36 8 {% endblock %}