On a busy site it can be nice to have a summary of admin activity. Running this command (I call it "adminlog") generates output like this:
2009-07-10 18:06:19: pbx changed flat page: "/yay/ -- Let's All Say Yay"
By default it shows the last five actions; pass it a numerical arg to show more or fewer.
Run this as a cron job and you can follow a site's admin-side activity without even logging in!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | from django.contrib.admin.models import LogEntry
from django.core.management.base import BaseCommand
class Command(BaseCommand):
help = "Display recent actions performed via the admin app"
args = "[number of actions to display]"
requires_model_validation = False
def handle(self, how_many=5, *args, **options):
last_actions = LogEntry.objects.all()[:how_many]
for action in last_actions:
timestamp = action.action_time.strftime("%Y-%m-%d %H:%M:%S")
print '%s: %s %s %s: "%s"' % (timestamp, action.user, verb(action), action.content_type, action.object_repr)
def verb(action):
"""Return English label for a given action code"""
if action.is_deletion():
return "deleted"
elif action.is_addition():
return "added"
elif action.is_change():
return "changed"
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.