I am creating a website with Django, and I want the user to be able to press a button which will send some data to my server, for example to add an entry to a database with a HTTP post request. I could do this by creating an HTML form, and in the action attribute, point to a view which will do the data processing, and then render a template.I am creating a website with Django, and I want