annotate gpp/templates/contact/contact_form.html @ 11:cc8eb028def1
Update jquery-ui and theme version that is hosted on google. In preparation for having jquery on every page (?), make it so that the autocomplete plug is using the 'global' jquery, and not the one that came with it. It seems to work okay with jquery 1.3.2.
author |
Brian Neal <bgneal@gmail.com> |
date |
Tue, 14 Apr 2009 02:35:35 +0000 |
parents |
dbd703f7d63a |
children |
6a5549c2efb5 |
rev |
line source |
gremmie@1
|
1 {% extends 'base.html' %}
|
gremmie@1
|
2 {% block title %}Contact{% endblock %}
|
gremmie@1
|
3 {% block content %}
|
gremmie@1
|
4 <h2>Contact Us</h2>
|
gremmie@1
|
5 <p>Please use the following form to contact the site management. Your feedback and comments are very
|
gremmie@1
|
6 important to us.</p>
|
gremmie@1
|
7 <form action="{% url contact.views.contact_form %}" method="post">
|
gremmie@1
|
8 <table>
|
gremmie@1
|
9 <tr><th>{{ form.name.label }}:</th><td>{{ form.name.errors }}{{ form.name }}</td></tr>
|
gremmie@1
|
10 <tr><th>{{ form.email.label }}:</th><td>{{ form.email.errors }}{{ form.email }}</td></tr>
|
gremmie@1
|
11 <tr><th>{{ form.subject.label }}:</th><td>{{ form.subject.errors }}{{ form.subject }}</td></tr>
|
gremmie@1
|
12 <tr style="display:none"><th>{{ form.honeypot.label }}:</th><td>{{ form.honeypot }}</td></tr>
|
gremmie@1
|
13 <tr><th>{{ form.message.label }}:</th><td>{{ form.message.errors }}{{ form.message }}</td></tr>
|
gremmie@1
|
14 <tr><td> </td><td><input type="submit" value="Send" /></td></tr>
|
gremmie@1
|
15 </table>
|
gremmie@1
|
16 </form>
|
gremmie@1
|
17 {% endblock %}
|