Skip to main content

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

Project description

pypi actions codecov downloads

django-audit-fields

VERSION

  • <=0.3.3 (DJ 3.1, py 3.7, 3.8)

  • >=0.3.4 (DJ 3.2+, py 3.9+)

  • >=0.3.14 (DJ4.2, py3.11) includes locale

Installation

pip install django-audit-fields

Add both django_audit_fields and django_revision to INSTALLED_APPS

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 HistoricalRecords

class MyModel(AuditUuidModelMixin, models.Model):
    ...
    history = HistoricalRecords()

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 Distribution

django-audit-fields-0.3.17.tar.gz (25.2 kB view details)

Uploaded Source

Built Distribution

django_audit_fields-0.3.17-py3-none-any.whl (23.6 kB view details)

Uploaded Python 3

File details

Details for the file django-audit-fields-0.3.17.tar.gz.

File metadata

  • Download URL: django-audit-fields-0.3.17.tar.gz
  • Upload date:
  • Size: 25.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.5

File hashes

Hashes for django-audit-fields-0.3.17.tar.gz
Algorithm Hash digest
SHA256 7f6be4110fa3799b8b1895bfadc88105b2dd38f3e3d28fc8974f9f0877bccec8
MD5 e23522b2aa7ccf99e3015943f253eb41
BLAKE2b-256 166408c7f040a088c4c84faf1eea30c56b0a2546eb715c6332157aa398c58a68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for django_audit_fields-0.3.17-py3-none-any.whl
Algorithm Hash digest
SHA256 4a4730fec1fb44bcbf4db042c823ceeb8b3749a2fd2739399115fcd9d5b9f017
MD5 52454c6360536d90d84a7c311550579d
BLAKE2b-256 e57bb21bc2723159d5a9b307f5a7eb6389a10cd5fa6984c0fc176e9a251007c4

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