[Answer]-Get_success_url produce "None" at the end of URL

1👍

Once update is successful, it will redirect to url returned by get_success_url(). As you are not returning anything in that function, you are redirected to .../update/None.

Either return appropriate url from that method or remove that method for default behavior.

👤Rohan

Leave a comment