Ben Sturmfels
531a97a3c9
The directory nesting is unnecessary here and confusing to navigate. I've moved all apps to the project subdirectory, currently called "www", but soon to be renamed "conservancy". I've also moved manage.py to the top-level directory.
27 lines
901 B
Python
27 lines
901 B
Python
from www.summit_registration.models import SummitRegistration
|
|
from django import forms
|
|
from django.shortcuts import render
|
|
|
|
|
|
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(reqeust, 'summit_registration/register_success.html', {'form': form.cleaned_data})
|
|
else:
|
|
form = SummitForm()
|
|
|
|
return render(request, 'summit_registration/register.html', {'form': form})
|