2

When adding data (I use PostgreSQL):

enter image description here

"django_admin_log" is inserted as shown below. *These below are the PostgreSQL query logs and you can check how to log PostgreSQL queries:

enter image description here

And, when changing data:

enter image description here

"django_admin_log" is inserted as shown below:

enter image description here

And, when clicking Delete on Change page:

enter image description here

Then, clicking Yes, I'm sure to delete data:

enter image description here

"django_admin_log" is inserted as shown below:

enter image description here

So, what is "django_admin_log" used for in Django Admin?

Super Kai - Kazuya Ito
  • 22,221
  • 10
  • 124
  • 129

1 Answers1

0

I believe it's used for the LogEntry feature of django that lets you track everything that is happening throught the admin panel.

https://docs.djangoproject.com/en/4.1/ref/contrib/admin/#logentry-objects

BDurand
  • 108
  • 1
  • 10