annotate gpp/templates/contact/contact_form.html @ 334:6805d15cda13
Adding a script I had to write on the fly to filter out posts from the posts csv file that had no parent topics. MyISAM let me get away with that, but InnoDB won't.
author |
Brian Neal <bgneal@gmail.com> |
date |
Sat, 26 Feb 2011 01:28:22 +0000 |
parents |
daa2916f5b34 |
children |
|
rev |
line source |
gremmie@1
|
1 {% extends 'base.html' %}
|
bgneal@310
|
2 {% load url from future %}
|
gremmie@1
|
3 {% block title %}Contact{% endblock %}
|
gremmie@1
|
4 {% block content %}
|
gremmie@1
|
5 <h2>Contact Us</h2>
|
gremmie@1
|
6 <p>Please use the following form to contact the site management. Your feedback and comments are very
|
gremmie@1
|
7 important to us.</p>
|
bgneal@310
|
8 <form action="{% url 'contact.views.contact_form' %}" method="post">{% csrf_token %}
|
gremmie@1
|
9 <table>
|
gremmie@1
|
10 <tr><th>{{ form.name.label }}:</th><td>{{ form.name.errors }}{{ form.name }}</td></tr>
|
gremmie@1
|
11 <tr><th>{{ form.email.label }}:</th><td>{{ form.email.errors }}{{ form.email }}</td></tr>
|
gremmie@1
|
12 <tr><th>{{ form.subject.label }}:</th><td>{{ form.subject.errors }}{{ form.subject }}</td></tr>
|
gremmie@1
|
13 <tr style="display:none"><th>{{ form.honeypot.label }}:</th><td>{{ form.honeypot }}</td></tr>
|
gremmie@1
|
14 <tr><th>{{ form.message.label }}:</th><td>{{ form.message.errors }}{{ form.message }}</td></tr>
|
gremmie@1
|
15 <tr><td> </td><td><input type="submit" value="Send" /></td></tr>
|
gremmie@1
|
16 </table>
|
gremmie@1
|
17 </form>
|
gremmie@1
|
18 {% endblock %}
|