question = get_object_or_404(Question, pk=question_id)
author_question = question.user
form = NewCommentForm(
request.POST)
if form.is_valid():
new_comment = Comment()
new_comment.question = question
new_comment.user = author_question
new_comment.comment_text = form.cleaned_data['comment_text']
new_comment.save()