Legimi button!
[redakcja.git] / src / depot / management / commands / depot.py
1 from django.core.management.base import BaseCommand
2 from depot.models import LegimiBookPublish
3
4
5 class Command(BaseCommand):
6     def handle(self, **options):
7         for p in LegimiBookPublish.objects.filter(status=0).order_by('created_at'):
8             print(p, p.book.slug, p.created_at)
9             p.publish()
10