from django.utils.decorators import method_decorator from django.shortcuts import redirect from django.contrib import messages from django.contrib.auth.decorators import login_required from django.conf import settings from django.contrib.auth.mixins import LoginRequiredMixin, UserPassesTestMixin class SuperUserRequiredMixin: """ View mixin which requires that the authenticated user is a super user (i.e. `is_superuser` is True). """ @method_decorator(login_required) def dispatch(self, request, *args, **kwargs): if not request.user.is_superuser: messages.error( request, 'You do not have the permission required to perform the ' 'requested operation.') return redirect(settings.LOGIN_URL) return super().dispatch(request, *args, **kwargs)