la-chariotte/la_chariotte/order/views/mixins.py
2024-04-13 19:07:54 +02:00

13 lines
349 B
Python

from django.contrib.auth.mixins import UserPassesTestMixin
class UserIsOrgaMixin(UserPassesTestMixin):
"""
The view is accessible only if the request user is orga or superuser
"""
def test_func(self):
return (
self.get_object().orga == self.request.user
or self.request.user.is_superuser
)