summaryrefslogtreecommitdiff
path: root/program/management/commands/update_hosts.py
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <ernesto.rico-schmidt@evolaris.net>2016-08-17 19:29:01 (GMT)
committerErnesto Rico-Schmidt <ernesto.rico-schmidt@evolaris.net>2016-08-17 19:29:01 (GMT)
commit36f76b359c1e2c3dc98f1e02cf9bcab748f8b489 (patch)
treefeefa308fce7bc892e79c75d2fa06dba182f82be /program/management/commands/update_hosts.py
parent5983b58a07790f5f8f5fbe93be59a788189e4225 (diff)
removed update_{hosts,programslots,shows} management commands.
Diffstat (limited to 'program/management/commands/update_hosts.py')
-rw-r--r--program/management/commands/update_hosts.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/program/management/commands/update_hosts.py b/program/management/commands/update_hosts.py
deleted file mode 100644
index 3cb143b..0000000
--- a/program/management/commands/update_hosts.py
+++ /dev/null
@@ -1,29 +0,0 @@
-from django.core.management.base import NoArgsCommand
-
-from program.models import Host
-
-
-class Command(NoArgsCommand):
- help = 'update host by setting is_active'
-
- def handle_noargs(self, **options):
- activated = 0
- deactivated = 0
-
- for host in Host.objects.all():
- active_shows = 0
- for show in host.shows.all():
- if show.is_active:
- active_shows += 1
- else:
- active_shows -= 1
-
- host.is_active = active_shows > 0
- host.save()
-
- if host.is_active:
- activated += 1
- else:
- deactivated += 1
-
- print "%s hosts activated, %s hosts de-activated " % (activated, deactivated)