feedback/forms.py
author nishanth
Mon, 19 Apr 2010 22:06:51 +0530
changeset 4 e3b8a3ae3857
child 5 9a671f3eb24c
permissions -rw-r--r--
added an app called event and created the event model.

from django import forms

from ws_app.feedback.models import Feedback

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

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

    def clean_comments(self):
        comments = self.cleaned_data['comments']
        return comments.strip()