sdi/forms.py
author nishanth
Sat, 29 May 2010 10:20:15 +0530
changeset 13 d668e6002f14
parent 8 e85ae25f920a
child 19 3932d9426c44
permissions -rw-r--r--
added admin interface for registrant

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