Django Embedded Admin Changelog

I can edit parent relationships with parents using the TablularInline and StackedInline classes, however I would prefer to list the child relationships as a list of changes, as there is a lot of information and the forms are too big. Is there a built-in changelog available to the Django administrator, or is there a way or way to create it?

+4
source share
1 answer

There is no such functionality, but I do not think it would be difficult to create your own subclass AdminInline (and the template accompanying it) that would do this. Just simulate it using TabularInline, but display the field data directly instead of rendering the form fields.

+1
source

All Articles