As much as I hate Ruby, Rails has a similar thing, and ActiveAdmin is just plain wonderful. Django AdminTools and Rails ones are must haves for me anymore.
Django AdminTools has been' updated since 2021. Is there an alternative that you use?
+1 on ActiveAdmin. We recently switched from Rails to Django and AA is something I'm severely missing. The DSL is terrribbblee but once you learn it, omg so fast to do anything.
I really looked into appsmith because of how cool the look, but one key problem I have is we're fintech so auditing objects is critical.
Appsmith has its own logging system and our Django app will also have one through django-simple-history. Reconciling the two will be super annoying. Rollbacks for user edited objects will be effectively impossible w/o a separate system.
You could handle that with an audit log (there's some standard ways to do this in SQL databases). And then expose that in the admin interface via the low code tools (which have SQL-to-UI builders).
Here's an example of an audit log I put together for an in app activity feed (in Postgres):
Thanks i appreciate the help. We'll take a look at it. Realistically it's probably too much lift to do all this directly. Key benefits of django-simple-history are single line add to other tables/models as well as reifying historical items.