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でeコマースサイトを構築しています。特定の日に作成されたすべての注文を一覧表示するページを作成したいのですが、スタッフだけがこのページにアクセスできるようにしたいのです。これどうやってするの?
スタッフがis_staffカスタムグループではなく旗を意味する場合は、ビューの前にこのデコレータを使用できます
is_staff
from django.contrib.admin.views.decorators import staff_member_required @staff_member_required ... view ...