fnp
/
edumed.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
let this work please
[edumed.git]
/
wtem
/
management
/
commands
/
wtem_generate_keys.py
diff --git
a/wtem/management/commands/wtem_generate_keys.py
b/wtem/management/commands/wtem_generate_keys.py
index
8a14ff9
..
f49c8b7
100644
(file)
--- a/
wtem/management/commands/wtem_generate_keys.py
+++ b/
wtem/management/commands/wtem_generate_keys.py
@@
-1,18
+1,23
@@
-from django.core.management.base import BaseCommand, CommandError
+# -*- coding: utf-8 -*-
+from django.core.management.base import BaseCommand
from contact.models import Contact
from wtem.models import Submission
class Command(BaseCommand):
from contact.models import Contact
from wtem.models import Submission
class Command(BaseCommand):
-
- def handle(self, *
arg
s, **options):
+
+ def handle(self, *
id
s, **options):
new = 0
skipped = 0
new = 0
skipped = 0
- for wtem_contact in Contact.objects.filter(form_tag = 'wtem').order_by('-created_at'):
+ query = Contact.objects.filter(form_tag='wtem').order_by('-created_at')
+ if ids:
+ query = query.filter(pk__in=ids)
+
+ for wtem_contact in query:
for student in wtem_contact.body['student']:
for student in wtem_contact.body['student']:
- if not Submission.objects.filter(email
=
student['email']).exists():
+ if not Submission.objects.filter(email
=
student['email']).exists():
args = dict()
for attr in ['first_name', 'last_name', 'email']:
args[attr] = student[attr]
args = dict()
for attr in ['first_name', 'last_name', 'email']:
args[attr] = student[attr]