[Answered ]-Django error no reverse match with arguments '('',)'

1👍

It is indeed a useless and annoying error. Usually, it means you haven’t passed something in the context of the request. In this case, the post object.

context = {'form':form, 'post': post}
return render(request, 'board/newreply.html', context)

Leave a comment