Answers
角色判断
- is_staff: 是否系统工作人员
- is_superuser: 是否超级用户
- is_active: 是否有效用户
- is_anonymous(): 是否匿名用户
- is_authenticated(): 是否登录了
- groups: 该用户所在的groups
- user_permissions: 该用户的所有权限
用户权限
在template中,可以使用下面的代码:
{% if perms.app_label.can_do_something %}
<form here>
{% endif %}
在view中,可以使用:
user.has_perm('app.view_task')
或者使用decorator如下:
@permission_required('polls.can_vote')
你可以参考 官方文档
当前 登录用户的权限信息 存储在template变量 {{ perms }} 中
兵库北香菜
answered 10 years, 3 months ago