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>
- [Answered ]-NoReverseMatch at /projects/ Reverse for 'user-profile' with arguments '('',)' not found
Source:stackexchange.com