Send data from list application to create new customer django

I have a problem, I would like to transfer the appropriate field parameters from one list to the form for creating something else. The names of the fields match but they are not the same in both and I would like to send only those that are the same. Example - I have a list of requests and on this list I have a button next to each request to be able to immediately add a customer from this request and send the appropriate fields to this form. How i need to do that?

I tried to work in templates and forms and views but I couldn't do it anywhere

Back to Top