Skip to main content

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.

Build Status codecov PyPI version

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.

  1. Enable middleware in django settings:
    MIDDLEWARE.append('admin_log.middleware.AdminLogMiddleware')
    
  2. 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()
    
  3. 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


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-blame-1.1.1.tar.gz (5.6 kB view details)

Uploaded Source

Built Distribution

django_admin_blame-1.1.1-py3-none-any.whl (6.0 kB view details)

Uploaded Python 3

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

Hashes for django-admin-blame-1.1.1.tar.gz
Algorithm Hash digest
SHA256 9abdd22fadce64462de0e6e52845138d5fffd60485e1c806df4ea88ddd95d88d
MD5 d034ad0073e220e5c394121ec1f4607b
BLAKE2b-256 50fb6facff12c608728a457dd2fdc3526be7520d9081b201278d4648b234b12d

See more details on using hashes here.

File details

Details for the file django_admin_blame-1.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_admin_blame-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 22588c22a017c2bb098b76461bcd4d6d85c4675280550b641f6d28f935cda5c2
MD5 90777ea65cba26b81cad9769e50c8720
BLAKE2b-256 ea6ecc26a1ada5de4961f430753fd41a0828b482aedf059e64b26b431c029d3f

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