annotate mysite/templates/band/mail_not_found.html @ 88:7245c769e31e
django1.3
Close this branch. I'm not sure if I merged it correctly to the
default branch, because the graphlog doesn't look right. But the
changes were made to default somehow. So closing this off to prevent
future confusion.
author |
Brian Neal <bgneal@gmail.com> |
date |
Sat, 13 Apr 2013 18:08:19 -0500 |
parents |
ead7bd49c9e0 |
children |
25e00d1b99bf |
rev |
line source |
bgneal@1
|
1 {% extends 'band/base.html' %}
|
bgneal@24
|
2 {% load url from future %}
|
bgneal@1
|
3 {% block title %}The Madeira | Mailing List Confirmation{% endblock %}
|
bgneal@1
|
4 {% block content %}
|
bgneal@1
|
5 <h1>Madeira Mailing List</h1>
|
bgneal@1
|
6 <p>Sorry, we did not find that email address in our database.</p>
|
bgneal@24
|
7 <p>Back to <a href="{% url 'mysite.band.views.contact' %}">contact page</a>.</p>
|
bgneal@1
|
8 {% endblock %}
|