Files @ f495422d05de
Branch filter:

Location: copyleftconf-website-fork/pinaxcon/registrasion/forms.py - annotation

Christopher Neugebauer
Merge pull request #15 from northbaypython/josh/copy

rejigger url scheme, organize static pages, and stub out last 2 pages needed for launch
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']