Fix: les participants nouvellement créés ont payé leurs places BdA

Si un participanti est créé avec `get_or_create`, son champ `paid`
n'était pas créé... C'est difficile à insérer dans la logique du
Manager, donc on fix ça dans la vue concernée.
This commit is contained in:
Ludovic Stephan 2019-11-06 23:13:14 +01:00 committed by Martin Pépin
parent 0bd3bd63aa
commit 381b52f46c
No known key found for this signature in database
GPG key ID: E7520278B1774448

View file

@ -385,7 +385,7 @@ def revente_manage(request, tirage_id):
user=request.user, tirage=tirage
)
if not participant.paid:
if not created and not participant.paid:
return render(request, "bda/revente/notpaid.html", {})
resellform = ResellForm(participant, prefix="resell")