[Answered ]-Django show message parameters in HttpResponseRedirect

2👍

I don’t understand your question title, but if you’re getting a 403, it’s most likely a CSRF error (which you would have seen). You should be posting the view that POSTs, not the success view/template.

Add {% csrf_token %} inside the <form> tags on any POST forms or django will complain of CSRF errors.

Leave a comment