1
0
mirror of https://gitlab.crans.org/bde/nk20-scripts synced 2024-12-02 13:16:56 +00:00

Compare commits

...

5 Commits

Author SHA1 Message Date
hugoooo
57cac0d92d Merge branch 'notes_report' into 'master'
send summary script

See merge request bde/nk20-scripts!5
2024-06-04 04:20:08 +02:00
thomasl
472c9c33ce Update extract_ml_registrations.py 2024-06-04 00:16:36 +02:00
thomasl
6149f11e53 Update extract_ml_registrations.py 2024-06-03 23:01:42 +02:00
thomasl
08455e6e60 Update extract_ml_registrations.py 2024-06-03 22:58:48 +02:00
thomasl
b17780e5e9 Update extract_ml_registrations.py 2024-06-03 22:55:41 +02:00

View File

@ -1,4 +1,4 @@
# Copyright (C) 2018-2021 by BDE ENS Paris-Saclay
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
from datetime import date
@ -10,7 +10,7 @@ from member.models import Club, Membership
class Command(BaseCommand):
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."
def add_arguments(self, parser):
@ -53,8 +53,11 @@ class Command(BaseCommand):
return
if options["type"] == "art":
nb=0
for user in User.objects.filter(profile__ml_art_registration=True).all():
self.stdout.write(user.email)
nb+=1
self.stdout.write(str(nb))
return
if options["type"] == "sport":