Update extract_ml_registrations.py
This commit is contained in:
parent
354a1f845e
commit
b17780e5e9
|
@ -10,7 +10,7 @@ from member.models import Club, Membership
|
||||||
|
|
||||||
class Command(BaseCommand):
|
class Command(BaseCommand):
|
||||||
help = "Get mailing list registrations from the last wei. " \
|
help = "Get mailing list registrations from the last wei. " \
|
||||||
"Usage: manage.py extract_ml_registrations -t {events,art,sport} -t {fr, en} -y {0, 1, ...}. " \
|
"Usage: manage.py extract_ml_registrations -t {events,art,sport} -l {fr, en} -y {0, 1, ...}. " \
|
||||||
"You can write this into a file with a pipe, then paste the document into your mail manager."
|
"You can write this into a file with a pipe, then paste the document into your mail manager."
|
||||||
|
|
||||||
def add_arguments(self, parser):
|
def add_arguments(self, parser):
|
||||||
|
@ -53,8 +53,11 @@ class Command(BaseCommand):
|
||||||
return
|
return
|
||||||
|
|
||||||
if options["type"] == "art":
|
if options["type"] == "art":
|
||||||
|
nb=0
|
||||||
for user in User.objects.filter(profile__ml_art_registration=True).all():
|
for user in User.objects.filter(profile__ml_art_registration=True).all():
|
||||||
self.stdout.write(user.email)
|
self.stdout.write(user.email)
|
||||||
|
nb+=1
|
||||||
|
print(nb)
|
||||||
return
|
return
|
||||||
|
|
||||||
if options["type"] == "sport":
|
if options["type"] == "sport":
|
||||||
|
|
Loading…
Reference in New Issue