diff --git a/bda/views.py b/bda/views.py index 94e57b7b..29812b90 100644 --- a/bda/views.py +++ b/bda/views.py @@ -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")