django-auditlog
django-auditlog copied to clipboard
A Django app that keeps a log of changes made to an object.
Closes #509 This is a "static" approach, which I think is better than overriding `get_search_fields`. I believe the `get_*` methods are for truly dynamic behavior (based on the request, the...
If you use a custom user that does not include `first_name` / `last_name` as a field, searching in the admin will error out as `actor__first_name` and `actor__last_name` are not valid...
I am already using the excellent django-eav2 project (by jazzband) in a project, and would like to add django-auditlog. These two don't combine out-of-the-box, it seems. When I create a...
We currently have more than 71,490,242 log entry records. This migration is going to be really slow for us and could break our application. Usually, when we have a slow...
In one of my projects I needed to use the changes_display_dict function in a Django template to display changes of a m2m field. Apparently for such field the `changes_display_dict` function...
This is another feature request that I'm willing to work on: Allow choosing a separate DB to store the logs at.
This might be a good optional dependency https://github.com/modlinltd/django-advanced-filters
Simple example: class ModelA(models.Model): id = ... class ModelB(models.Model): modela = models.ForeignKey(ModelA, related="modelbs") I want to have auditlog change entry on a ModelA instance when ModelB is created, deleted, changed...
Hi, Are there any plans to implement async in the current middleware? At the moment using the middleware forces the entire request pipeline to be sync as the middleware doesn't...
Hi, I have implemented the Audit Log on one of my Django projects, I'm currently stuck at trying to get the foreign objects name for a audit log of user...