Mercurial > public > sg101
view contact/views.py @ 953:8647a669edb4
Fix excessive cache usage for forum date/times.
Issue #84. Hitting the cache 30+ times while browsing the forums
to adjust all the dates/times into the user's time zone. Just
hit the user's profile and be done with it. It should be loaded.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 19 May 2015 21:08:45 -0500 |
parents | 38db6ec61af3 |
children | 6ac56115e0a8 |
line wrap: on
line source
"""Views for the contact application.""" from django.shortcuts import redirect, render from contact.forms import ContactForm from core.functions import get_full_name def contact_form(request): if request.method == 'POST': form = ContactForm(request.POST) if form.is_valid(): form.save() return redirect('contact-thanks') else: initial_data = {} if request.user.is_authenticated(): name = get_full_name(request.user) initial_data = {'name': name, 'email': request.user.email} subject = request.GET.get('subject') if subject: initial_data['subject'] = subject form = ContactForm(initial=initial_data) return render(request, 'contact/contact_form.html', {'form': form})