LogEntry.action_flag
The type of action logged: ADDITION
, CHANGE
, DELETION
.
For example, to get a list of all additions done through the admin:
1 2 3 | from django.contrib.admin.models import LogEntry, ADDITION LogEntry.objects. filter (action_flag = ADDITION) |
Please login to continue.