Organizers can edit payments
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
parent
5084bb65d9
commit
a44439671e
|
@ -453,7 +453,7 @@ class PaymentUpdateView(LoginRequiredMixin, UpdateView):
|
|||
object = self.get_object()
|
||||
if not user.is_authenticated or \
|
||||
not user.registration.is_admin \
|
||||
and (user.registration.is_volunteer and user.registration in object.tournament.organizers.all()
|
||||
and (user.registration.is_volunteer and user.registration not in object.tournament.organizers.all()
|
||||
or user.registration.is_student and user.registration not in object.registrations.all()
|
||||
or user.registration.is_coach and user.registration.team != object.team):
|
||||
return self.handle_no_permission()
|
||||
|
|
Loading…
Reference in New Issue