feedback/forms.py
author nishanth
Tue, 29 Jun 2010 11:38:04 +0530
changeset 59 0b57494e8b4e
parent 5 9a671f3eb24c
permissions -rw-r--r--
added the field topic to each question in xml file

from django import forms

from offline.feedback.models import Feedback

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

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

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