sdi/forms.py
author nishanth
Sat, 29 May 2010 09:48:43 +0530
changeset 8 e85ae25f920a
child 19 3932d9426c44
permissions -rw-r--r--
added forms.py

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