Antu
Antu

Reputation: 2303

how can I return to the previous page in Django 2

I'm Prety new in Django. I want to know how to return to the previous page from view to template without taking path or url.

Upvotes: 0

Views: 680

Answers (1)

Henry Li
Henry Li

Reputation: 174

Pretty sure this is a duplicate but

Try this:

from django.http import HttpResponseRedirect

def someview(request):
   ...
   return HttpResponseRedirect(request.META.get('HTTP_REFERER'))

Upvotes: 2

Related Questions