2
This is strange, but you should be able to use the @never_cache
decorator to prevent it:
from django.views.decorators.cache import never_cache
@never_cache
def index(request):
....
Source:stackexchange.com
2
This is strange, but you should be able to use the @never_cache
decorator to prevent it:
from django.views.decorators.cache import never_cache
@never_cache
def index(request):
....