Generate submission from latest contact
[edumed.git] / wtem / management / commands / wtem_generate_keys.py
index 75847ae..8a14ff9 100644 (file)
@@ -5,13 +5,12 @@ from wtem.models import Submission
 
 
 class Command(BaseCommand):
-    help = 'Sends personalized links to WTEM contestants'
-
+    
     def handle(self, *args, **options):
         new = 0
         skipped = 0
 
-        for wtem_contact in Contact.objects.filter(form_tag = 'wtem'):
+        for wtem_contact in Contact.objects.filter(form_tag = 'wtem').order_by('-created_at'):
             for student in wtem_contact.body['student']:
                 if not Submission.objects.filter(email = student['email']).exists():
                     args = dict()