update results emails
[edumed.git] / wtem / management / commands / wtem_send_results.py
index d2dc147..4f2de33 100644 (file)
@@ -37,9 +37,13 @@ class Command(BaseCommand):
             action='store',
             dest='only_to',
             default=None,
-            help='Send emails only to listed addresses'),
+            help='Send email only to one address'),
     )
 
+    def __init__(self):
+        super(Command, self).__init__()
+        self.sent = self.failed = None
+
     def handle(self, *args, **options):
         translation.activate('pl')
         for target in ['to_teachers', 'to_students']:
@@ -50,7 +54,7 @@ class Command(BaseCommand):
 
     def handle_to_students(self, *args, **options):
         self.stdout.write('>>> Sending results to students')
-        subject = 'Wyniki II etapu Wielkiego Turnieju Edukacji Medialnej'
+        subject = 'Wyniki I etapu Olimpiady Cyfrowej'
 
         for submission in get_submissions():
             if options['only_to'] and submission.email != options['only_to']:
@@ -67,8 +71,7 @@ class Command(BaseCommand):
 
     def handle_to_teachers(self, *args, **options):
         self.stdout.write('>>> Sending results to teachers')
-        subject = 'Wyniki II etapu Wielkiego Turnieju Edukacji Medialnej'
-        failed = sent = 0
+        subject = 'Wyniki I etapu Olimpiady Cyfrowej'
 
         submissions_by_contact = dict()