What is the difference between HttpResponseRedirect and redirect?
What is the difference between HttpResponseRedirect and redirect? There is a difference between the two: In the case of HttpResponseRedirect the first argument can only be a url . redirect which will ultimately return a HttpResponseRedirect can accept a model , view , or url as it’s “to” argument. So Read more…