1👍
✅
Your url contains a /
(query/
) whereas your action doesn’t. So you could remove this slash but this isn’t really the correct fix, you should be using the url
template tag.
<form class="form-horizontal" action="{% url 'index' %}" method="post">
Source:stackexchange.com