django-auditlog icon indicating copy to clipboard operation
django-auditlog copied to clipboard

A Django app that keeps a log of changes made to an object.

Results 136 django-auditlog issues
Sort by recently updated
recently updated
newest added

This work creates the basic implementation of the `LogEntry.serialized_object` field. This field tracks the state of an object following a create, update, or delete action. A manager method is also...

Hello, I'm facing a strange error when saving an admin model in Postgresql. After some research, I realized it has something to do with the auditlog. The exception is being...

We need to be able to access a serialized dictionary of an object's field values following a change. I'd like to add a `serialized_data` JSON field to the `LogEntry` model....

:warning: PLEASE DO NOT MERGE THIS PR :warning: Storing the object changes as a json is preferred because it allows SQL queries to access the change values. This work moves...

Breaking Change

when no field 'default' attribute is present credit to: https://github.com/stherrien Fixes #169

I have installed the plugin and on an Django Rest Framework instance. All the logging is working as expected, except the Logging of the Actor. I added the Middleware as...

bug

Hello! At https://github.com/jjkester/django-auditlog/blob/bcf1dbf0bf1781553877c4e806bab85dde96673e/src/auditlog/middleware.py#L41-L42 you read X-Forwarded-For if it is present and use it as an IP. Unfortunately at least Azure Web App Service also appends a colon separated port number....

bug

## Problem I registered a nullable field of a model using `include_fields`. There was a a check for null `changes` in the `log_update` receiver, but not the `log_create` and `log_delete`...

Added locale to translate app in admin. Also I'm added two additional files: - manage.py - app.py `app.py` is needed only to translate the app-name, in the other hand `manage.py`...

The documentation says that the verbose_name is supposed to be shown in the django admin log entries, but we can only see the field names, not the verbose names. We...

needs more info