How do I go about cleaning up or overriding the Recent Actions panel in Admin Admin?
I want the admin interface to look like a new installation.
thanks
The Recent Actions panel in Django Admin displays LogEntry models. To clear it, you simply delete all objects:
LogEntry
from django.contrib.admin.models import LogEntry LogEntry.objects.all().delete()