Files @ 9b48cc94e651
Branch filter:

Location: website/www/conservancy/apps/summit_registration/views.py

Bradley M. Kuhn
Continuing saga of the sizing chart problems for original shirts

Gildan removed the sizing chart entirely from their website again
after yet another redesign. Originally, we deep-linked into files in
their CDN for the charts, but it appears that in 5c72071 that I
introduced cut-and-paste error on the sizing charts. I cannot find
the original links, but finally I simply decided we'd mirror the
files in our CDN, which is where these now link to.

I suspect that I didn't do this to start for worrying about copyright
infringement, but upon second thought, I think it's very reasonably
fair use for us to distribute these images. We bought a lot of
t-shirts from Gildan and just trying to sell through.
from builtins import object
from django.shortcuts import render
from django import forms
from conervancy.apps.summit_registration.models import SummitRegistration

def register(request):
    """Summit registration form view
    """

    class SummitForm(ModelForm):
        class Meta(object):
            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})