15 lines
533 B
Python
15 lines
533 B
Python
from django.contrib.auth import REDIRECT_FIELD_NAME
|
|
from django.contrib.auth.decorators import user_passes_test
|
|
|
|
|
|
def staff_member_required(view_func, redirect_field_name=REDIRECT_FIELD_NAME, login_url='admin:login'):
|
|
"""
|
|
Decorator for views that checks that the user is logged in and is a staff
|
|
member, displaying the login page if necessary.
|
|
"""
|
|
return user_passes_test(
|
|
lambda u: u.is_active and u.is_staff,
|
|
login_url=login_url,
|
|
redirect_field_name=redirect_field_name
|
|
)(view_func)
|