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

Need the project lead validation, to be sure ;).

I store all of my content type and user data in one database, so I cannot have AuditLog store log records on each individual database, they need to be stored...

enhancement

I have these two models, which have worked for me for many months. ```python class User(AbstractBaseUser, PermissionsMixin): username = models.CharField(max_length=250, blank=True) email = models.CharField(max_length=100, unique=True, blank=True, null=True) class UserOrdersView(models.Model): user...

bug

As of now Auditlog only handles three of the four CRUD operations. Only the following types of operations are currently covered: - CREATE - UPDATE - DELETE However, from time...

enhancement
question

When looping over `changes_display_dict.items` creates KeyError ``` site-packages\auditlog\registry.py", line 104, in get_model_fields 'include_fields': list(self._registry[model]['include_fields']), Exception Type: KeyError at /account/user/logs/15/detail/ Exception Value: ``` But `changes_dict.items` is ok

bug

Guys, i needed to update `django-auditlog` to version `1.0a1` in my project to update the dependency `python-dateutil`. When i try to install the package via requirements the pip returns the...

* Replaced `auto_now_add=True` with `default=timezone.now` * Added two testcases * Added migration This is very handy in order to import historic data from another source. This relates to #199

After upgrading Django from 2.2 to 3.1.1 and django-auditlog from 0.4.7 to v1.0a1 I now have to `json.loads(log_entry["additional_data"])` to get the same result as `log_entry["additional_data"]` before. Is this an intentional...