Tools for logging changes made from Django admin
Project description
django-admin-blame
django-admin-blame is a Django app providing mixins for tracking date and author of model changes from django admin.
Description
Often it is useful to know date and author of object creation or modification. django-admin-blame provides a django model mixin with fields:
- created (datetime) - timestamp of object creation
- created_by (FK to User) - reference to an admin user who created this object through admin site
- modified (datetime) - timestamp of last object modification
- modified_by (FK to User) - reference to an admin user who made last changes to
this object through admin site. If changes has been made somewhere else,
field value is reset to
None.
Installation
pip install django-admin-blame
Working example is in testproject.testapp.
- Enable middleware in django settings:
MIDDLEWARE.append('admin_log.middleware.AdminLogMiddleware')
- Add model mixin to your models:
from django.db import models from admin_log.models import AdminLogMixin class Subject(AdminLogMixin, models.Model): title = models.CharField(max_length=50) content = models.TextField()
- Add admin mixin to corresponding model admin:
from django.contrib import admin from admin_log.admin import AdminLogMixin from testproject.testapp import models @admin.register(models.Subject) class SubjectAdmin(AdminLogMixin, admin.ModelAdmin): pass
Now you have readonly fields with date and author of last revision in admin "edit" page.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django-admin-blame-1.1.1.tar.gz.
File metadata
- Download URL: django-admin-blame-1.1.1.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9abdd22fadce64462de0e6e52845138d5fffd60485e1c806df4ea88ddd95d88d
|
|
| MD5 |
d034ad0073e220e5c394121ec1f4607b
|
|
| BLAKE2b-256 |
50fb6facff12c608728a457dd2fdc3526be7520d9081b201278d4648b234b12d
|
File details
Details for the file django_admin_blame-1.1.1-py3-none-any.whl.
File metadata
- Download URL: django_admin_blame-1.1.1-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22588c22a017c2bb098b76461bcd4d6d85c4675280550b641f6d28f935cda5c2
|
|
| MD5 |
90777ea65cba26b81cad9769e50c8720
|
|
| BLAKE2b-256 |
ea6ecc26a1ada5de4961f430753fd41a0828b482aedf059e64b26b431c029d3f
|