sdi/forms.py
author nishanth
Sat, 29 May 2010 10:35:45 +0530
changeset 17 ee98a9b44ef9
parent 8 e85ae25f920a
child 19 3932d9426c44
permissions -rw-r--r--
moved admin.py to correct location

from django import forms

from sage_days.sdi.models import Registrant

class RegisterForm(forms.ModelForm):
    """ The form that is displayed to user.
    """

    class Meta:
        model = Registrant