summaryrefslogtreecommitdiff
path: root/program/management/commands/update_shows.py
diff options
context:
space:
mode:
Diffstat (limited to 'program/management/commands/update_shows.py')
-rw-r--r--program/management/commands/update_shows.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/program/management/commands/update_shows.py b/program/management/commands/update_shows.py
new file mode 100644
index 0000000..d582bb5
--- /dev/null
+++ b/program/management/commands/update_shows.py
@@ -0,0 +1,22 @@
+from django.core.management.base import NoArgsCommand
+
+from program.models import Show
+
+from datetime import date
+
+
+class Command(NoArgsCommand):
+ help = 'update shows by setting is_active'
+
+ def handle_noargs(self, **options):
+ for show in Show.objects.exclude(pk=1):
+ has_active_programslots = None
+ for programslot in show.programslots.all():
+ if programslot.until > date.today():
+ has_active_programslots = True
+ else:
+ has_active_programslots = False
+ show.has_active_programslots = has_active_programslots
+
+ if not has_active_programslots:
+ show.save()