Fix subscribing to equipe-trigram@
This commit is contained in:
parent
0d758d2b08
commit
36d8d993e3
|
@ -59,7 +59,8 @@ class Command(BaseCommand):
|
||||||
sympa.subscribe(team.email, "equipes-non-valides", True, f"Equipe {team.name}")
|
sympa.subscribe(team.email, "equipes-non-valides", True, f"Equipe {team.name}")
|
||||||
|
|
||||||
for participant in ParticipantRegistration.objects.filter(team__isnull=False).all():
|
for participant in ParticipantRegistration.objects.filter(team__isnull=False).all():
|
||||||
sympa.subscribe(participant.user.email, f"equipe-{participant.team.trigram.lower}", True, f"{participant}")
|
sympa.subscribe(participant.user.email, f"equipe-{participant.team.trigram.lower()}",
|
||||||
|
True, f"{participant}")
|
||||||
|
|
||||||
for volunteer in VolunteerRegistration.objects.all():
|
for volunteer in VolunteerRegistration.objects.all():
|
||||||
for organized_tournament in volunteer.organized_tournaments.all():
|
for organized_tournament in volunteer.organized_tournaments.all():
|
||||||
|
|
Loading…
Reference in New Issue