I have a question about how to pass a table( or List) items to the server when sending data in a form using the POST method, both on the client side using jquery, and on the server side using django forms.
So my question is how would i manage to add all data of a table in a POST request, when i click on the submit button??
How to handle this data using the form api in django??
And Thank you
You can get the answer of this exact question from here: Django - Working with forms
If you are after some examples. Here is one: Django Form example from DjangoGirls