I'm near the start of the fourth page of the Django tutorial and looking at the vote view, at the end of which is this:
# Always return an HttpResponseRedirect after successfully dealing
# with POST data. This prevents data from being posted twice if a
# user hits the Back button.
Having tried the vote view with a normal HttpResponse instead of the HttpResponseRedirect, I can see that after a POST a redirect should be returned the browser, in order that if a user hits the refresh button then a duplicate submission is less likely. (I notice that Opera doesn't issue a "you're about to resubmit data" warning!).
But that's the refresh button -I can't see how the issue with the back button. What am I missing?