I’m a beginner in django, and i made a sign up system. When a user register a new user, he’ll be directed back to the sign in page template, with a message variable that a new user is added.
I’ve read that using HttpResponseRedirect after a successful POST request is recommended. So i can’t use render as far as i know.
So how to achieve this using HttpResponseRedirect ?
I believe you can achieve this using the messages framework.