view 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
line wrap: on
line source
{% extends 'base.html' %}
{% block title %}Contact{% endblock %}
{% block content %}
<h2>Contact Us</h2>
<p>Please use the following form to contact the site management. Your feedback and comments are very
important to us.</p>
<form action="{% url contact.views.contact_form %}" method="post">
<table>
   <tr><th>{{ form.name.label }}:</th><td>{{ form.name.errors }}{{ form.name }}</td></tr>
   <tr><th>{{ form.email.label }}:</th><td>{{ form.email.errors }}{{ form.email }}</td></tr>
   <tr><th>{{ form.subject.label }}:</th><td>{{ form.subject.errors }}{{ form.subject }}</td></tr>
   <tr style="display:none"><th>{{ form.honeypot.label }}:</th><td>{{ form.honeypot }}</td></tr>
   <tr><th>{{ form.message.label }}:</th><td>{{ form.message.errors }}{{ form.message }}</td></tr>
   <tr><td>&nbsp;</td><td><input type="submit" value="Send" /></td></tr>
</table>
</form>
{% endblock %}