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

Following Django's documentation for PostgreSQL's JSON field: https://docs.djangoproject.com/en/1.10/ref/contrib/postgres/fields/#querying-jsonfield I get some weird behaviour after including AuditLog in my installed apps: **#models.py** ``` python from django.contrib.postgres.fields import JSONField from django.db import...

enhancement
question

(As pointed out in #36) **Proposed solution:** - Make connecting signals optional (but do it by default) when registering a model - Create an easy to use method for creating...

enhancement

Currently, as discovered in https://github.com/jjkester/django-auditlog/issues/8, Auditlog does not behave well when it comes to related data. The following needs improvement: - Handle fixture loading (https://github.com/jjkester/django-auditlog/issues/8) - Make sure (test) that...

enhancement

`LogEntry.object_id` is a `BigIntegerField`, so presumably `LogEntry.id` should be a `BigAutoField` to handle more than ((2^32)/2)-1 log entries. The code change should be as simple as adding `id = models.BigAutoField(primary_key=True,...

enhancement

**UPDATE:** I have solved it in the following way and I've created a PR for documentation: ``` auditlog.unregister(User) request.user.delete() auditlog.register(User) ``` The workaround might be improved catching exceptions and making...

bug

I am trying to improve the performance of a django app I am contributing to. This app has a feature which is importing objects into the database. These imports trigger...

enhancement

This would be helpful in creating a string representation of the change for a timeline which people could store in additional data. I would only pass in kwargs if get_additional_data...

enhancement

Hi there, this is more like a question. I'm looking into the possibilities of importing old data (that will be needed when going productive with the app) into the auditlog's...

enhancement

one to one relation error happening on diff.py line 80 where field object does not have attribute default if onetoonerel type field. suggested patch if hasattr(field, 'default'): value = field.default...

bug

I'm currently working on a fork that allows a configurable backend. We use this module extensively in production but are running into issues with DB. We considered putting audit logs...

enhancement