mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
6 lines
141 B
Python
6 lines
141 B
Python
from django.contrib import admin
|
|
|
|
from auditlog.registry import auditlog
|
|
|
|
for model in auditlog.get_models():
|
|
admin.site.register(model)
|