有没有办法在 base.html 文件中访问登录用户的名字?
我正在尝试这样做,因为我想在导航栏上显示当前登录的人,但它不会访问用户的信息,也不会正确检查用户是否经过身份验证。
base.html 中的 html
Hi there,
{% if user.is_authenticated %}
{{user.first_name}}
{% else %}
Stranger
{% endif %}