website/www/summit_registration/views.py
Ben Sturmfels 531a97a3c9
Eliminate "conservancy" and "apps" subdirectories
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.
2023-10-25 12:36:39 +11:00

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})