1👍
You are missing the action
attribute on <form>
<form action="{% url 'url_name_for_the_view' %}" method="POST">
{% csrf_token %}
.
.
.
</form>
Source:stackexchange.com
1👍
You are missing the action
attribute on <form>
<form action="{% url 'url_name_for_the_view' %}" method="POST">
{% csrf_token %}
.
.
.
</form>