Add to your middleware classes before 'django.middleware.csrf.CsrfViewMiddleware'.
1 2 3 | class IgnoreCsrfMiddleware(object):
def process_request(self, request):
request.csrf_processing_done = True
|
More like this
- Generate and render HTML Table by LLyaudet 5 days, 9 hours ago
- My firs Snippets by GutemaG 1 week, 1 day ago
- FileField having auto upload_to path by junaidmgithub 1 month, 2 weeks ago
- LazyPrimaryKeyRelatedField by LLyaudet 1 month, 3 weeks ago
- CacheInDictManager by LLyaudet 1 month, 3 weeks ago
Comments
Works great - to clarify you add it like so (in settings.py):
#
If you are going to ignore the csrf why adding the middleware in the first place?
#
Please login first before commenting.