I have django.middleware.csrf.CsrfViewMiddleware in settings.MIDDLEWARE_CLASSES and CSRF verification is working just fine for all my other forms. render_comment_form is including {% csrf_token %} properly; I verified that the HTML is showing up. Any ideas?
I have django.middleware.csrf.CsrfViewMiddleware in settings.MIDDLEWARE_CLASSES and CSRF verification is working just fine for all
Share
I forgot to add
to my render_to_response call at the end of my view. Doh!