I would like to have a form containing three times two related fields (A name, and some ip address as a simple regex field)
name1
name1 IPs
name2
name2 IPs
name3
name3 IPs
name 1 and 2 are required, IPs are never. Is there a way not to repeat these fields, and/or better, to receive them as list or something like : [ { name, ip }, { name, ip }, { name, ip } ]
EDIT: Name and IPs are wild datas, they are not related to any model, they're used for a call to an API
Thanks