Skip to content Skip to sidebar Skip to footer

How To Redirecting Page After Post Submit Form?

I have a submit form look like this :

Add Node

Node ID

Solution 1:

use the redirect function from:

import this in your views

from django.shortucts import redirect

after that use it after you saved your value like this:

return redirect(<your views function to were you went to send>)

Post a Comment for "How To Redirecting Page After Post Submit Form?"