forked from DGNum/gestioCOF
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:
parent
0bd3bd63aa
commit
381b52f46c
1 changed files with 1 additions and 1 deletions
|
@ -385,7 +385,7 @@ def revente_manage(request, tirage_id):
|
||||||
user=request.user, tirage=tirage
|
user=request.user, tirage=tirage
|
||||||
)
|
)
|
||||||
|
|
||||||
if not participant.paid:
|
if not created and not participant.paid:
|
||||||
return render(request, "bda/revente/notpaid.html", {})
|
return render(request, "bda/revente/notpaid.html", {})
|
||||||
|
|
||||||
resellform = ResellForm(participant, prefix="resell")
|
resellform = ResellForm(participant, prefix="resell")
|
||||||
|
|
Loading…
Reference in a new issue