feedback/forms.py
author nishanth
Thu, 15 Apr 2010 19:53:52 +0530
changeset 58 a26c82f593f0
parent 10 c52d170969f0
child 64 df751cd8a1e4
permissions -rw-r--r--
implemented send activation. have to test it and do the same for change password.

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