view gpp/templates/contact/contact_form.html @ 507:8631d32e6b16

Some users are still having problems with the pop-up login. I think they are actually getting 403s because of the CSRF protection. So I have modified the base template to always have a javascript variable called csrf_token available when they aren't logged in. The ajax_login.js script was then modified to send this value with the ajax post. Fingers crossed.
author Brian Neal <bgneal@gmail.com>
date Sun, 04 Dec 2011 03:05:21 +0000
parents daa2916f5b34
children
line wrap: on
line source
{% extends 'base.html' %}
{% load url from future %}
{% 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">{% csrf_token %}
<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 %}