Gre*_*reg 1 python django django-authentication
嗨,我正在尝试使用这里提到的user_passes_test装饰器.但我一直收到这个错误:
'bool' object is not callable
Run Code Online (Sandbox Code Playgroud)
我的用法:
@user_passes_test(lambda u: u.is_active() and u.is_staff())
def fulfillment(request):
...
Run Code Online (Sandbox Code Playgroud)