Skip to main content

Add model fields to track creation and modification dates, users and more on save.

Project description

pypi travis codecov downloads

django-audit-fields

Installation

pip install django_audit_fields

Add both django_audit_fields and django_revision to INSTALLED_APPS:

.. code-block:: python
INSTALLED_APPS = [

“…”, “django_revision.apps.AppConfig”, “django_audit_fields.apps.AppConfig”, “…”]

Usage

Add model fields to track creation and modification dates, users and more on save.

Declare your model using AuditModelMixin

from django_audit_fields.model_mixins import AuditModelMixin

class MyModel(AuditModelMixin,  models.Model):

    ...

    class Meta(AuditModelMixin.Meta):
            pass

Preferably, use a UUID as primary key by declaring your model using AuditUuidModelMixin

from django_audit_fields.model_mixins import AuditUuidModelMixin

class MyModel(AuditUuidModelMixin, models.Model):

    ...

    class Meta(AuditUuidModelMixin.Meta)
            pass

The model mixins AuditModelMixin and AuditUuidModelMixin:

  • add audit fields (created, modified, user_created, user_modified, hostname_created, hostname_modified);

The model mixin AuditUuidModelMixin also

  • sets the id fields to a UUIDField instead of an integer;

Most models require an audit trail. If so, add the HistoricalRecord model manager from django-simple-history:

from simple_history.models import HistoricalRecord

class MyModel(AuditUuidModelMixin, models.Model):

    ...
    history = HistoricalRecord()

Notes

User created and modified fields behave as follows:

  • created is only set on pre-save add

  • modified is always updated

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

django_audit_fields-0.3.3-py3-none-any.whl (22.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page