I\'m making a Django app that keeps track of tv show episodes. This is for a page on a certain Show instance. When a user clicks to add/subtract a season, I want the page to
to redirect to the same page (e.g. an http GET) after a POST, I like...
return HttpResponseRedirect("") # from django.http import HttpResponseRedirect
it also avoids hardcoding the show:detail route name, and is a lil' clearer intention wise (for me at least!)
show:detail