[Answer]-Django / HTML – are forms the only way to send POST requests?

1👍

You are right, you should use a post request if you want to change data on the server.

If you’re just using html, then you need to create a form and a submit button. If you are using javascript, you could add a click handler to the link, which submits the form.
Ui

Leave a comment