[Fixed]-Suit form include on list display in admin

1👍

What’s doing django-suit, here, is that it is including your HTML snippet in the change_form that is displayed for your model, the change_form being where you can modify your model and save the changes into the database.

Where you want it to appear is the “change_list“, aka the place where you can see all of your instances of that model in your database.

To add it your html snippet, you should extend your change_list.html with your own snippet : More info on expanding templates in the official documentation

Good luck !

👤Hurlu'

Leave a comment