Files @ daac0fdd6043
Branch filter:

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

Brett Smith
templates: Render payment buttons at the bottom of invoices.

In addition to the top, to better follow modern convention.
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']