Files @ 2fbc85db8e1b
Branch filter:

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

Christopher Neugebauer
Increases margin on tight-headings so that there isn’t interaction between two adjacent H1/H2 blocks
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']