2016-08-20 18:08:28 +01:00

16 lines
318 B
Python

from django.core.management.base import BaseCommand
from documents.models import Log
from ...mixins import Renderable
class Command(BaseCommand):
help = "A quick & dirty way to see what's in the logs"
def handle(self, *args, **options):
for l in Log.objects.order_by("pk"):
print(l)