Added _getSurveyTakeForm to the Survey view.
Subclasses can overwrite this method to create their own form. ProjectGradingSurvey will likely be an example for this.
from django.dispatch import Signalrequest_started = Signal()request_finished = Signal()got_request_exception = Signal(providing_args=["request"])