Files @ c56c7498700b
Branch filter:

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

Christopher Neugebauer
Prepares registrasion-demo to match the 0.1 release of registrasion.
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']