author | nishanth |
Thu, 15 Apr 2010 18:23:21 +0530 | |
changeset 53 | 0a4b2c49f718 |
parent 10 | c52d170969f0 |
child 64 | df751cd8a1e4 |
permissions | -rw-r--r-- |
5 | 1 |
from django import forms |
2 |
||
3 |
from workshop.feedback.models import Feedback |
|
4 |
||
5 |
class FeedbackForm(forms.ModelForm): |
|
6 |
""" A form to collect the feedback. |
|
7 |
""" |
|
8 |
||
9 |
class Meta: |
|
10 |
model = Feedback |
|
10
c52d170969f0
quite a few changes. modified models and feedback views .
nishanth
parents:
5
diff
changeset
|
11 |
exclude = ['user_ip', 'event', 'day'] |
5 | 12 |