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

> The core idea of Auditlog is similar to the log from Django’s admin. Unlike the log from Django’s admin (django.contrib.admin) Auditlog is much more flexible. Also, Auditlog saves a...

enhancement
hacktoberfest

Remove Null->blank changes showing up in changes

In Django, you can update the raw ID of a ForeignKey relation using the '*_id' field without assigning it a new model. This needs to be logged by the audit...

Because empty (empty string) GenericIPAddressFields if saved via a form are stored as Null value in the database (not as an empty string) and on retrieval via the ORM are...

I was seeing false positives on my decimal fields, where I "changed the value" from .17000 to .17. Why does `get_field_value` stringify before comparing? I would think most datatypes will...

bug

Environment: - python (3.4.2) - django (1.8.16) - mysqlclient (1.3.7) - MariaDB (10.0.30) Steps to reproduce: - `CREATE DATABASE utf8mb4_test DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_unicode_ci;` - `python manage.py...

bug

We use auditlog in a high traffic site using MySql(PyMySQL==0.7.9 and Gevent) and it is giving us Deadlocks: ``` InternalError: (1213, u'Deadlock found when trying to get lock; try restarting...

bug

~~I am going to write up an issue to relate to this PR in the next day or two. At the moment, I'm focused on getting this fix merged into...

Fix https://github.com/jazzband/django-auditlog/issues/418