1👍
✅
You need to change the action
of the form to point to your other URL/view. Assuming your add
view exists at the /newsletter
URL, you would change your form to:
<form action="/newsletter" method="POST">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Save</button>
</form>
Source:stackexchange.com