I have a view that accepts a form submission and updates a model.
After updating the model, I want to redirect to another page, and I want a message such as \"Field X su
Can you just pass the message as a query param oon the URL to which you're redirecting? It's not terribly RESTy, but it ought to work:
return HttpResponseRedirect('/polls/%s/results/?message=Updated" % p.id)
and have that view check for a message param, scrub it for nasties, and display it at the top.