[Answered ]-Request.is_ajax return false in template

2👍

Do you have the ‘request’ context processor enabled?
The list called TEMPLATE_CONTEXT_PROCESSORS shloud have this string in it:

django.core.context_processors.request

It is off by default.

👤seeg

Leave a comment