jakewaxman
Results
1
comments of
jakewaxman
in django adding no-cache headers when returning a fragment worked for me ``` if request.META.get("HTTP_HX_REQUEST", None): response["Cache-Control"] = "no-cache, no-store, must-revalidate" response["Pragma"] = "no-cache" response["Expires"] = "0" ```