[Answered ]-Redirect in CreateView Django doesn't work

1👍

The problem is not the success URL, it is the method to which the form posts. You should make a POST request to the post_new view. Your <form> should thus specify:

<form method="POST" action="{% url 'post_new' %}">
    …
</form>

Leave a comment