Files @ 0eff007ca0ff
Branch filter:

Location: CopyleftConf/copyleftconf-website/pinaxcon/registrasion/forms.py

Brett Smith
Remove unwanted dependencies.

This doesn't remove all trace of them but it's enough to avoid installing
them and still be able to see the front page.
import models

from django import forms

class ProfileForm(forms.ModelForm):
    ''' A form for requesting badge and profile information. '''

    class Meta:
        model = models.AttendeeProfile
        exclude = ['attendee']