mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +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)
|