Hi,
I need to add a basic audit capability to a django app. There seem to be lots of superficially similar apps and modules around: django-audit, django-audit-log, AuditTrail, SimpleHistory. Does anyone have any experience with these or recommendations?
The models I need to track are quite simple: A, B, C where A has a many-to-one relationship with B, and B has a many-to-one relationship with C. I'd like to track create/update/delete operations together with the name of the user making the change, and present a table that can be filtered by the name of a C instance, or by the name of the user/editor.
Thanks for any advice you can offer,
Brian