[Answer]-Load django form template with Jquery

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> 

Leave a comment