Files @ 61891ef3e3c6
Branch filter:

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

Christopher Neugebauer
Fixes the procfile to not be the thing that Gondor wants, and is instead the thing that Heroku wants.
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']