feedback/forms.py
author nishanth
Thu, 01 Jul 2010 16:28:46 +0530
changeset 82 79ae8288b5ff
parent 5 9a671f3eb24c
permissions -rw-r--r--
removed the restriction on code field and options field in models

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()