I'm trying to render a client's data in the template, but I'd like to do it without using {{ form.as_p }}
or {{ form.as_table }}
whatever, I'd like to know if there's any way to use the id of the clients in question and use inputs in template in place of "form", I have tried everything here, I know that if I enter the shell of django I get the id just of the form, but even with id in hand I can not get the client to be rendered for editing, the fields appear however blank.
Detail : With CreateView this method of getting the form ids worked, however I want the same to happen with UpdateView .
Thanks in advance for your attention.