Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 django 建立一个电子商务网站。我想建立一个页面,列出在某一天创建的所有订单,但我只希望我的员工能够访问这个页面。我怎样才能做到这一点?
如果工作人员指的是is_staff标志而不是自定义组,那么您可以在视图之前使用此装饰器
is_staff
from django.contrib.admin.views.decorators import staff_member_required @staff_member_required ... view ...