mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-04-23 00:04:47 +00:00
7 lines
141 B
Python
7 lines
141 B
Python
|
|
from django.contrib import admin
|
||
|
|
|
||
|
|
from auditlog.registry import auditlog
|
||
|
|
|
||
|
|
for model in auditlog.get_models():
|
||
|
|
admin.site.register(model)
|