sdi/forms.py
author nishanth
Sat, 29 May 2010 09:51:15 +0530
changeset 9 47f72774489e
parent 8 e85ae25f920a
child 19 3932d9426c44
permissions -rw-r--r--
added the return statement for register view

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