Here is my version. Link to available fields.
class LogAdmin(admin.ModelAdmin): """Create an admin view of the history/log table""" list_display = ('action_time','user','content_type','change_message','is_addition','is_change','is_deletion') list_filter = ['action_time','user','content_type'] ordering = ('-action_time',)
source share