website/www/conservancy/apps/summit_registration/views.py
Bradley M. Kuhn f6bbcc7ee3 Just quit it with this relative import stuff.
While I think these relative imports seem to be valid for the running
application, I am having trouble with the django-admin applications
regarding them.  I don't see this syntactic sugar as absolutely
essential, so I'm just going to change it now.
2015-03-08 17:54:05 -07:00

28 lines
998 B
Python

from django.shortcuts import render_to_response
from django import forms
from conervancy.apps.summit_registration.models import SummitRegistration
def register(request):
"""Summit registration form view
"""
class SummitForm(ModelForm):
class Meta:
model = SummitRegistration
SummitForm.base_fields['email'].label = 'Email address'
SummitForm.base_fields['phone'].label = 'Phone number'
SummitForm.base_fields['address'].label = 'Mailing address'
SummitForm.base_fields['cle_credit'].label = 'Attending for CLE credit?'
if request.method == 'POST':
form = SummitForm(request.POST)
if form.is_valid():
form.save()
return render_to_response('summit_registration/register_success.html',
{'form': form.cleaned_data})
else:
form = SummitForm()
return render_to_response('summit_registration/register.html',
{'form': form})