I have m2m field, lets say it have name \'relations\', so i want to allow user to send as many relations as he wants. I add new input to html with javascript with same name,
You don't need to grab all the raw values, you can just get the specific data by using element name like this:
relations = request.form.getlist('relations')
That will return a list of values in the relations input.
relations