A Django app to log change models fields.
Project description
History is a Django app to log change model fields
Detailed documentation is in the “docs” directory.
Quick start
Add “django_history” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'django_history', ... ]
Add middleware to your MIDDLEWARE:
MIDDLEWARE = [ ... 'django_history.middleware.ThreadLocals', ]
Add models fields to your OBSERVED_FIELDS:
OBSERVED_FIELDS = { 'accounts.User': ( 'username', 'first_name', 'middle_name', 'last_name', 'gender', 'phone', 'email', 'photo', 'birthday', ), ... }
Use to admin.py:
from django.contrib import admin from django_history.admin import HistoryBlockAdmin @admin.register(App) class AppAdmin(HistoryBlockAdmin, admin.ModelAdmin): ...
Run python manage.py migrate to create the history models.
Start the development server and visit http://127.0.0.1:8000/admin/ to create a history (you’ll need the Admin app enabled).
Visit http://127.0.0.1:8000/admin/django_history/action/ to participate in the all history.
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-admin-history-2.2.2.tar.gz
(24.7 kB
view hashes)
Close
Hashes for django-admin-history-2.2.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | b89c93da3e87d633ca97cb7f73c96a673d284eed747d4cce9b3ee0dd0386fe40 |
|
MD5 | f8d38c5e7d8a58f8d2b62e75bf6f5efc |
|
BLAKE2b-256 | 4b7ab873f7b47e7287bf1cce4b2714ddbe6bab3c3f79dd082b5bc5373d996ea6 |