users can now register but still there is no concept of activation e-mail .
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']