feedback/forms.py
author nishanth
Tue, 13 Apr 2010 12:07:44 +0530
changeset 22 737ec98cf6df
parent 10 c52d170969f0
child 64 df751cd8a1e4
permissions -rw-r--r--
added the missing return statements in clean functions of forms .

from django import forms

from workshop.feedback.models import Feedback

class FeedbackForm(forms.ModelForm):
    """ A form to collect the feedback.
    """

    class Meta:
        model = Feedback
        exclude = ['user_ip', 'event', 'day']