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.1.14-py3-none-any.whl (21.7 kB view details)

Uploaded Python 3

File details

Details for the file django_audit_fields-0.1.14-py3-none-any.whl.

File metadata

  • Download URL: django_audit_fields-0.1.14-py3-none-any.whl
  • Upload date:
  • Size: 21.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0.post20200309 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6

File hashes

Hashes for django_audit_fields-0.1.14-py3-none-any.whl
Algorithm Hash digest
SHA256 3098378829132699d0c54782cf5774c1871363dc830a7cbf717bc62aad58ff2d
MD5 f720a2ec5c65ae6a5b0a177d4cd17460
BLAKE2b-256 4199a3593ce3cf26b9957b2d6226563ec2831a04383ee013591bc2d07a10e411

See more details on using hashes here.

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