Mercurial > public > madeira
comparison mysite/templates/admin/band/email.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 'admin/base_site.html' %} | |
2 {% block title %}The Madeira | Mailing List Email Form{% endblock %} | |
3 {% block extrastyle %} | |
4 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}django/css/forms.css" /> | |
5 {% endblock %} | |
6 {% block bodyclass %}change-form{% endblock %} | |
7 {% block breadcrumbs %} | |
8 <div class="breadcrumbs"> | |
9 <a href="/admin">Home</a> | |
10 </div> | |
11 {% endblock %} | |
12 {% block content %} | |
13 <h1>Madeira Mailing List Email Form</h1> | |
14 <div id="content-main"> | |
15 <p>Use this form to send an email to all subscribers of the The Madeira mailing list.</p> | |
16 <form method="post" action="{{ request.build_absolute_uri }}"> | |
17 <div> | |
18 <fieldset class="module aligned"> | |
19 {% for field in form %} | |
20 <div class="form-row {% if field.field.required %}required{% endif %} {% if field.errors %}errors{% endif %}"> | |
21 {% if field.errors %}{{ field.errors }}{% endif %} | |
22 {{ field.label_tag }} | |
23 {{ field }} | |
24 </div> | |
25 {% endfor %} | |
26 </fieldset> | |
27 <div class="submit-row"> | |
28 <input type="submit" name="Send" value="Send" class="default" /> | |
29 </div> | |
30 </div> | |
31 </form> | |
32 </div> | |
33 {% endblock %} |