I have a form that redirects to the same page after a user enters information (so that they can continue entering information). If the form submission is successful, I\'m r
The best way would probably be to use a coded querystring on the redirect URL... its an old school approach.
You could do something like
/page/?m=1, /page/?m=2, etc
You would then parse that variable with request.GET in the view code and show the appropriate message.