[Answer]-How do I make a form in the list view in django admin?

1👍

Use a Mixin overriding get_context_data, in it load the form and inject it to the context, then override your get method in your view and manipulated the data provided.
I can’t provide more since I don’t know what exactly is your example.

Leave a comment