feedback/forms.py
author nishanth
Thu, 15 Apr 2010 13:59:46 +0530
changeset 41 ab0a8a72b069
parent 10 c52d170969f0
child 64 df751cd8a1e4
permissions -rw-r--r--
added view report functionality. have to make it look better.

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']