From 8953d3de0705a89f13a944f38428d7279143a1b6 Mon Sep 17 00:00:00 2001 From: Ludovic Stephan Date: Thu, 16 Feb 2017 09:22:15 -0200 Subject: [PATCH] remove immediate mail --- bda/views.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/bda/views.py b/bda/views.py index 6ec8bbdb..d82c6e4a 100644 --- a/bda/views.py +++ b/bda/views.py @@ -329,7 +329,6 @@ def revente(request, tirage_id): if 'resell' in request.POST: resellform = ResellForm(participant, request.POST, prefix='resell') if resellform.is_valid(): - datatuple = [] attributions = resellform.cleaned_data["attributions"] with transaction.atomic(): for attribution in attributions: @@ -344,18 +343,6 @@ def revente(request, tirage_id): revente.notif_sent = False revente.tirage_done = False revente.shotgun = False - context = { - 'vendeur': participant.user, - 'show': attribution.spectacle, - 'revente': revente - } - datatuple.append(( - 'bda-revente-new', context, - settings.MAIL_DATA['revente']['FROM'], - [participant.user.email] - )) - revente.save() - send_mass_custom_mail(datatuple) # On annule une revente elif 'annul' in request.POST: annulform = AnnulForm(participant, request.POST, prefix='annul')