annotate gpp/contact/views.py @ 429:d0f0800eef0c

Making the jquery tabbed version of the messages app the current version and removing the old. Also figured out how to dynamically update the base template's count of unread messages when messages are read.
author Brian Neal <bgneal@gmail.com>
date Tue, 03 May 2011 02:56:58 +0000
parents dbd703f7d63a
children
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))