mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-05-12 01:23:10 +00:00
9 lines
244 B
Python
9 lines
244 B
Python
|
|
from django.contrib import admin
|
||
|
|
from .models import LogEntry
|
||
|
|
|
||
|
|
class LogEntryAdmin(admin.ModelAdmin):
|
||
|
|
list_display = ('object_pk', 'object_repr', 'actor', 'action', 'changes', 'timestamp')
|
||
|
|
|
||
|
|
admin.site.register(LogEntry, LogEntryAdmin)
|
||
|
|
|