Files @ 6fd55d1ca659
Branch filter:

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

Christopher Neugebauer
Adds new invoice.html, which adds in a link to the demo pay button
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']