feedback/forms.py
author nishanth
Tue, 20 Apr 2010 15:39:07 +0530
changeset 13 ad193c5014b2
parent 5 9a671f3eb24c
permissions -rw-r--r--
added ip field to model and used it in start page

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