如何使 django 上的超级用户和普通用户的网页不同?

How do I make a webpage be different for a superuser and a normal user on django?

稍微解释一下,我想做一个练习网站,里面有两个方面,客户端和管理端,所以我想在某些页面显示某些功能您以管理员身份登录,并且不向普通用户显示所述功能,例如编辑和其他内容。我该怎么做?

希望我解释得当。 谢谢。

是的,这就是你要的

在您的模板中

hello.html

{% if user.is_superuser or user.is_staff %}
This section only visible to superuser and staff
This section not accessible to normal users
{% endif %}