comparison mysite/templates/band/mail.html @ 1:0dcfcdf50c62

Initial import of Madeira project from the private repository.
author Brian Neal <bgneal@gmail.com>
date Mon, 06 Apr 2009 03:10:59 +0000
parents
children ead7bd49c9e0
comparison
equal deleted inserted replaced
0:df0370bfe3f0 1:0dcfcdf50c62
1 {% extends 'band/base.html' %}
2 {% block title %}The Madeira | Mailing List{% endblock %}
3 {% block content %}
4 <h1>Madeira Mailing List</h1>
5 <p>Get on the Madeira mailing list to receive updates about upcoming shows, releases, and website updates.
6 This is a low volume list. We do not share your email address with anyone.</p>
7 <fieldset><legend>Mailing List</legend>
8 <form method="post" action="{{ request.build_absolute_uri }}">
9 <table border="0" class="input-form">
10 {% for field in form %}
11 <tr>
12 <th>{{ field.label_tag }}{% if field.field.required %}*{% endif %}:</th>
13 <td>{{ field }}
14 {% if field.errors %}{{ field.errors }}{% endif %}</td>
15 </tr>
16 {% endfor %}
17 <tr><td><input type="submit" name="Submit" value="Submit" class="submit-button" /></td></tr>
18 </table>
19 </form>
20 </fieldset>
21 {% endblock %}