added the view event functionality and submitting feedback according to the status .
from django import formsfrom workshop.feedback.models import Feedbackclass FeedbackForm(forms.ModelForm): """ A form to collect the feedback. """ class Meta: model = Feedback exclude = ['user_ip', 'event', 'day']