annotate contact/views.py @ 631:f36d1a168be7

For issue 27, disable login dialog button during POST. This seems to prevent multiple logins most of the time. You can still bang on the enter key and sometimes get more through.
author Brian Neal <bgneal@gmail.com>
date Wed, 14 Nov 2012 20:57:05 -0600
parents ee87ea74d46b
children 38db6ec61af3
rev   line source
gremmie@1 1 # Create your views here.
gremmie@1 2
gremmie@1 3 from django.shortcuts import render_to_response
gremmie@1 4 from django.template import RequestContext
gremmie@1 5 from django.http import HttpResponseRedirect
gremmie@1 6 from django.core.urlresolvers import reverse
gremmie@1 7
gremmie@1 8 from contact.forms import ContactForm
gremmie@1 9 from core.functions import get_full_name
gremmie@1 10
gremmie@1 11
gremmie@1 12 def contact_form(request):
gremmie@1 13 if request.method == 'POST':
gremmie@1 14 form = ContactForm(request.POST)
gremmie@1 15 if form.is_valid():
gremmie@1 16 form.save()
gremmie@1 17 return HttpResponseRedirect(reverse('contact.views.contact_thanks'))
gremmie@1 18 else:
gremmie@1 19 initial_data = {}
gremmie@1 20 if request.user.is_authenticated():
gremmie@1 21 name = get_full_name(request.user)
gremmie@1 22 initial_data = {'name' : name, 'email' : request.user.email}
gremmie@1 23
gremmie@1 24 form = ContactForm(initial = initial_data)
gremmie@1 25
gremmie@1 26 return render_to_response('contact/contact_form.html',
gremmie@1 27 {'form' : form},
gremmie@1 28 context_instance = RequestContext(request))
gremmie@1 29
gremmie@1 30
gremmie@1 31 def contact_thanks(request):
gremmie@1 32 return render_to_response('contact/contact_thanks.html',
gremmie@1 33 context_instance = RequestContext(request))