mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-17 06:30:27 +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)
|