Files @ 5c2fdb5863b4
Branch filter:

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

Christopher Neugebauer
Replaces display:none with hidden-accessible class recommended by Nic
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']