sdi/forms.py
author nishanth
Sat, 29 May 2010 15:39:55 +0530
changeset 19 3932d9426c44
parent 8 e85ae25f920a
child 20 9db4ee082d4e
permissions -rw-r--r--
added the topics field in register form

from django import forms

from sage_days.sdi.models import Registrant, TOPICS_CHOICES

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

    topics_interested = forms.MultipleChoiceField(widget=forms.CheckboxSelectMultiple, choices=TOPICS_CHOICES)       
    class Meta:
        model = Registrant