Добрый вечер, подскажите пожалуйста, чем может быть вызвана эта ошибка
question = get_object_or_404(Question, pk=question_id)
...
form = NewCommentForm(
request.POST)
if form.is_valid():
new_comment = Comment()
new_comment.question_id = question
new_comment.comment_text = form.cleaned_data['comment_text']
new_comment.save()
Ошика: Field 'id' expected a number but got <Question: Чем покр...