copyleftconf-website/pinaxcon/registrasion/forms.py

11 lines
229 B
Python
Raw Normal View History

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']