Disable browser 'Back' button after logout?


from django.views.decorators.cache import cache_control
@cache_control(no_cache=True, must_revalidate=True)
def func()
  #some code
  return

Comments

Popular Posts