Skip to content Skip to sidebar Skip to footer

How Can I Create New Form In Django Admin Changelist Page

I have the django changelist page overridden. I have changed the template change_list_results to lokk like i want. However i want to have small form in header like export pdf but w

Solution 1:

Results are inside the 'changelist-form' form, and by rule, you cannot add a form inside another. What you can do is to add the form outside of the 'changelist-form'.

https://github.com/django/django/blob/stable/1.4.x/django/contrib/admin/templates/admin/change_list.html#L86

Post a Comment for "How Can I Create New Form In Django Admin Changelist Page"