18 lines
No EOL
614 B
Python
18 lines
No EOL
614 B
Python
from django.contrib.auth import REDIRECT_FIELD_NAME
|
|
from django.contrib.auth.decorators import user_passes_test
|
|
|
|
|
|
def staff_required(function=None, redirect_field_name=REDIRECT_FIELD_NAME, login_url=None):
|
|
"""
|
|
Decorator for views that checks that the user is logged in and is staff,
|
|
redirecting to the log-in page if necessary.
|
|
"""
|
|
actual_decorator = user_passes_test(
|
|
lambda u: u.is_authenticated() and u.is_staff,
|
|
login_url=login_url,
|
|
redirect_field_name=redirect_field_name
|
|
)
|
|
if function:
|
|
return actual_decorator(function)
|
|
|
|
return actual_decorator |