在模板中使用权限:
在settings.TEMPLATES.OPTIONS.context_process下,因为添加了django.auth.context_processors.auth上下文处理器,因此,在模板中可以直接通过perms来获取用户的所有权限,示例代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>操作权限首页</title>
</head>
<body>
操作权限首页
{% if perms.login_logout.view_article %}
<li><a href="#">查看文章</a></li>
{% endif %}
</body>
</html>