Skip to main content

No project description provided

Project description

django_history

Django_history - a module for tracking changes to model instances.

Install

pip3 install git+https://github.com/QuantumaStelata/django-history.git

Add to INSTALLED_APPS

INSTALLED_APPS = [
    ...
    'django_history'
    ...
]

Do migrations

python3 manage.py migrate

Create a model

class Task(models.Model):
  ...

Add mixin to your model

from django_history.mixins import HistoryMixin


class Task(HistoryMixin):
  ...

Note: using a HistoryMixin doesn't need to be migrated

Congrats, history is being recorded

For flexible use, write in the settings.py

# A function that returns the user who made the request.
# NOTE: function must not have arguments.
HISTORY_GET_CURRENT_USER

# If true then the history object will be saved asynchronously using celery_app.
# WARNING: history recording uses pickle serializer.
HISTORY_ALLOW_CELERY

# If you are deleting objects programmatically,
# pass in a list of field names that store information about deleting the object
# to more accurately create a history object.
HISTORY_SOFT_DELETE_FIELDS

For example

  1. Using soft delete model
# models.py
class Task(HistoryMixin):
  ...
  deleted_at = models.DateTimeField(null=True)
  ...

# settings.py
# Pass soft delete field in HISTORY_SOFT_DELETE_FIELDS
HISTORY_SOFT_DELETE_FIELDS = ['deleted_at']
  1. If you use django-currentuser, pass get_current_user function to HISTORY_GET_CURRENT_USER
# settings.py
from django_currentuser.middleware import get_current_user

HISTORY_GET_CURRENT_USER = get_current_user

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_histories-1.0.2.tar.gz (6.1 kB view hashes)

Uploaded Source

Built Distribution

django_histories-1.0.2-py3-none-any.whl (9.3 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