author | nishanth |
Fri, 16 Apr 2010 17:55:59 +0530 | |
changeset 91 | d5ae97aaa24d |
parent 64 | df751cd8a1e4 |
child 94 | 5de0009c0d71 |
permissions | -rwxr-xr-x |
5 | 1 |
from django import forms |
2 |
||
64 | 3 |
from ws_app.feedback.models import Feedback |
5 | 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 |