sdi/forms.py
author nishanth
Sat, 29 May 2010 11:41:52 +0530
changeset 18 7d587311a4b5
parent 8 e85ae25f920a
child 19 3932d9426c44
permissions -rw-r--r--
added blank in topics_interested field in models

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